Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikibooksThe Free Textbook Project
Search

Rebol Programming/set-face

From Wikibooks, open books for an open world
<Rebol Programming
This page may need to bereviewed for quality.

USAGE:

[edit |edit source]
SET-FACE face value /no-show

DESCRIPTION:

[edit |edit source]

Sets the primary value of a face. Returns face object (for show).

SET-FACE is a function value.

ARGUMENTS

[edit |edit source]
  • face -- (Type: any)
  • value -- (Type: any)

REFINEMENTS

[edit |edit source]
  • /no-show -- Do not show change yet

SOURCE CODE

[edit |edit source]
set-face: func [    {Sets the primary value of a face. Returns face object (for show).}     face     value     /no-show "Do not show change yet"     /local access][    if all [        access: get in face 'access         in access 'set-face*    ] [        access/set-face* face value    ]     if not no-show [show face]     face]
Retrieved from "https://en.wikibooks.org/w/index.php?title=Rebol_Programming/set-face&oldid=3353042"
Category:

[8]ページ先頭

©2009-2025 Movatter.jp