remove.event: remove.event

Description Usage Arguments Details Value Author(s) Examples

View source: R/event.registry.R

Description

Remove an Event entirely

Usage

1
remove.event(registry, event)

Arguments

registry

EventRegistry

event

String. Name of the Event to remove

Details

Remove an Event entirely from the EventRegistry. Contrast with clear.event.handlers, which only removes the handlers for that event.

Value

Nothing good.

Author(s)

Brad Friedman

Examples

1
2
3
4
5
r <- new.event.registry()
add.event(r, "mouseclick")
has.event(r, "mouseclick")
remove.event(r, "mouseclick")
has.event(r, "mouseclick")

AnalysisPageServer documentation built on April 28, 2020, 6:32 p.m.