remove.event {AnalysisPageServer} | R Documentation |
Remove an Event entirely
remove.event(registry, event)
registry |
EventRegistry |
event |
String. Name of the Event to remove |
Remove an Event entirely from the EventRegistry. Contrast with clear.event.handlers
,
which only removes the handlers for that event.
Nothing good.
Brad Friedman
r <- new.event.registry() add.event(r, "mouseclick") has.event(r, "mouseclick") remove.event(r, "mouseclick") has.event(r, "mouseclick")