< Rebol Programming

USAGE:

VIEWED? face 

DESCRIPTION:

Returns TRUE if face is displayed.

VIEWED? is a function value.

ARGUMENTS

  • face -- (Type: object)

SOURCE CODE

viewed?: func [
    "Returns TRUE if face is displayed." 
    face [object!]
][
    found? find system/view/screen-face/pane find-window face
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.