跳转到内容

Rebol 编程/reset-face

来自维基教科书,开放的书籍,开放的世界
RESET-FACE face /no-show 

重置面的主要值。

RESET-FACE 是一个函数值。

  • face -- (类型:任何)
  • /no-show -- 暂不显示更改

源代码

[编辑 | 编辑源代码]
reset-face: func [
    "Resets 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 'reset-face*
    ] [
        access/reset-face* face
    ] 
    if not no-show [show face] 
    face
]
华夏公益教科书