Rebol 编程/clear-face
外观
< Rebol 编程
用法
[编辑 | 编辑源代码]CLEAR-FACE face /no-show
描述
[编辑 | 编辑源代码]清除一个脸部的主要值。
CLEAR-FACE 是一个函数值。
参数
[编辑 | 编辑源代码]- face -- (类型:任何)
细化
[编辑 | 编辑源代码]- /no-show -- 暂时不显示变化
源代码
[编辑 | 编辑源代码]clear-face: func [ "Clears the primary value of a face." face /no-show "Do not show change yet" /local access ][ if all [ access: get in face 'access in access 'clear-face* ] [ access/clear-face* face ] if not no-show [show face] face ]