Rebol Programming/hide
USAGE:
HIDE face /show
DESCRIPTION:
Hides a face or block of faces.
HIDE is a native value.
ARGUMENTS
- face -- (Type: object block)
REFINEMENTS
- /show -- Refreshes the area under the face being hidden.
SOURCE CODE
hide: native[
"Hides a face or block of faces."
face [object! block!]
/show "Refreshes the area under the face being hidden."
]