Rebol Programming/hide

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:[edit | edit source]

HIDE face /show 

DESCRIPTION:[edit | edit source]

Hides a face or block of faces.

HIDE is a native value.

ARGUMENTS[edit | edit source]

  • face -- (Type: object block)

REFINEMENTS[edit | edit source]

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

SOURCE CODE[edit | edit source]

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