Rebol Programming/viewed?

USAGE:

edit
VIEWED? face 

DESCRIPTION:

edit

Returns TRUE if face is displayed.

VIEWED? is a function value.

ARGUMENTS

edit
  • face -- (Type: object)

SOURCE CODE

edit
viewed?: func [
    "Returns TRUE if face is displayed." 
    face [object!]
][
    found? find system/view/screen-face/pane find-window face
]