remove.event {AnalysisPageServer}R Documentation

remove.event

Description

Remove an Event entirely

Usage

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

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

[Package AnalysisPageServer version 1.20.0 Index]