Rebol Programming/remove-event-func

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:

[edit | edit source]
REMOVE-EVENT-FUNC funct 

DESCRIPTION:

[edit | edit source]

Remove an event function previously added.

REMOVE-EVENT-FUNC is a function value.

ARGUMENTS

[edit | edit source]
  • funct -- (Type: function)

SOURCE CODE

[edit | edit source]
remove-event-func: func [
    "Remove an event function previously added." 
    funct [function!]
][
    remove find system/view/screen-face/feel/event-funcs :funct
]