< Rebol Programming

USAGE:

SET-PARA aface 'word val 

DESCRIPTION:

(undocumented)

SET-PARA is a function value.

ARGUMENTS

  • aface -- (Type: any)
  • word -- (Type: any)
  • val -- (Type: any)

SOURCE CODE

set-para: func [aface 'word val][
    if none? aface/para [aface/para: vid-face/para] 
    if not flag-face? aface para [aface/para: make aface/para [] flag-face aface para] 
    set in aface/para word val
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.