IEventTarget Methods |
The IEventTarget type exposes the following members.
Name | Description | |
---|---|---|
AddEventListener(String, IEventListener) |
This method allows the registration of event listeners on the event target.
| |
AddEventListener(String, IEventListener, Boolean) |
This method allows the registration of event listeners on the event target.
| |
DispatchEvent |
This method allows the dispatch of events into the implementations event model.
| |
RemoveEventListener(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.
| |
RemoveEventListener(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.
|