Learn R Programming

AnalysisPageServer (version 1.6.2)

remove.event: remove.event

Description

Remove an Event entirely

Usage

remove.event(registry, event)

Arguments

registry
EventRegistry
event
String. Name of the Event to remove

Value

Nothing good.

Details

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

Examples

Run this code
r <- new.event.registry()
add.event(r, "mouseclick")
has.event(r, "mouseclick")
remove.event(r, "mouseclick")
has.event(r, "mouseclick")

Run the code above in your browser using DataLab