REBOL Programming/clear-face

      USAGE:

      CLEAR-FACE face /no-show 
      

      DESCRIPTION:

      Clears the primary value of a face.

      CLEAR-FACE is a function value.

      ARGUMENTS

      • face -- (Type: any)

      REFINEMENTS

      • /no-show -- Do not show change yet

      SOURCE CODE

      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
      ]
      
      Last modified on 27 October 2012, at 22:15