IEventListenerHandleEvent Method |
This method is called whenever an event occurs of the type for which the
IEventListener interface was registered.
Namespace: Aspose.Html.Dom.EventsAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntaxvoid HandleEvent(
Event event
)
Sub HandleEvent (
event As Event
)
void HandleEvent(
Event^ event
)
abstract HandleEvent :
event : Event -> unit
Parameters
- event
- Type: Aspose.Html.Dom.EventsEvent
The Event contains contextual information about the event.
It also contains the StopPropagation and PreventDefault methods which are used in determining the event's flow and default action.
See Also