IEventTarget Methods

The IEventTarget type exposes the following members.

Methods
  NameDescription
Public methodAddEventListener(String, IEventListener)
This method allows the registration of event listeners on the event target.
Public methodAddEventListener(String, IEventListener, Boolean)
This method allows the registration of event listeners on the event target.
Public methodDispatchEvent
This method allows the dispatch of events into the implementations event model.
Public methodRemoveEventListener(String, IEventListener)
This method allows the removal of event listeners from the event target. If an IEventListener is removed from an EventTarget while it is processing an event, it will not be triggered by the current actions. Event Listeners can never be invoked after being removed.
Public methodRemoveEventListener(String, IEventListener, Boolean)
This method allows the removal of event listeners from the event target. If an IEventListener is removed from an EventTarget while it is processing an event, it will not be triggered by the current actions. Event Listeners can never be invoked after being removed.
See Also