Rebol Programming/hide

USAGE:

edit
HIDE face /show 

DESCRIPTION:

edit

Hides a face or block of faces.

HIDE is a native value.

ARGUMENTS

edit
  • face -- (Type: object block)

REFINEMENTS

edit
  • /show -- Refreshes the area under the face being hidden.

SOURCE CODE

edit
hide: native[
    "Hides a face or block of faces." 
    face [object! block!] 
    /show "Refreshes the area under the face being hidden."
]