Rebol Programming/viewed?
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
]