IEventListener class
IEventListener class
The IEventListener
interface is the primary method for handling events.
Users implement the IEventListener
interface and register their listener on an EventTarget
using the EventTarget.add_event_listener
method.
The users should also remove their IEventListener
from its EventTarget
after they have completed using the listener.
The IEventListener type exposes the following members:
Methods
Method | Description |
---|---|
handle_event | This method is called whenever an event occurs of the type for which the IEventListener interface was registered. |
Remarks
When a Node is copied using the cloneNode method the Event Listeners attached to the source Node are not attached to the copied Node. If the user wishes the same Event Listeners to be added to the newly created copy the user must add them manually.
See Also
- module
aspose.svg.dom.events
- class
EventTarget
- class
IEventListener