Rebol 编程/set-face
外观
< Rebol 编程
SET-FACE face value /no-show
设置一个面的主要值。返回面对象(用于显示)。
SET-FACE 是一个函数值。
- face -- (类型:任何)
- value -- (类型:任何)
- /no-show -- 暂不显示更改
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 ]