Namespace Aspose.Html.Dom.Events
Namespace Aspose.Html.Dom.Events
Classes
Class Name | Description |
---|---|
CustomEvent | Events using the CustomEvent interface can be used to carry custom data. |
DocumentLoadErrorEvent | The Aspose.Html.Dom.Events.DocumentLoadErrorEvent occurres when the requested resource is not available. |
ErrorEvent | The Aspose.Html.Dom.Events.ErrorEvent provides contextual information about an errors that occurred during runtime. |
Event | The Aspose.Html.Dom.Events.Event is used to provide contextual information about an event to the handler processing the event. |
FocusEvent | The FocusEvent interface provides specific contextual information associated with Focus events. |
InputEvent | Input events are sent as notifications whenever the DOM is being updated. |
KeyboardEvent | The KeyboardEvent interface provides specific contextual information associated with keyboard devices. Each keyboard event references a key using a value. Keyboard events are commonly directed at the element that has the focus. |
MouseEvent | The MouseEvent interface provides specific contextual information associated with Mouse events. |
UIEvent | The UIEvent interface provides specific contextual information associated with User Interface events. |
WheelEvent | The WheelEvent interface provides specific contextual information associated with wheel events. To create an instance of the WheelEvent interface, use the WheelEvent constructor, passing an optional WheelEventInit dictionary. |
Interfaces
Interface Name | Description |
---|---|
IDocumentEvent | The Aspose.Html.Dom.Events.IDocumentEvent interface provides a mechanism by which the user can create an Aspose.Html.Dom.Events.Event of a type supported by the implementation. |
IEventListener | The Aspose.Html.Dom.Events.IEventListener interface is the primary method for handling events. Users implement the Aspose.Html.Dom.Events.IEventListener interface and register their listener on an Aspose.Html.Dom.EventTarget using the Aspose.Html.Dom.EventTarget.AddEventListener(System.String,Aspose.Html.Dom.Events.DOMEventHandler,System.Boolean) method. The users should also remove their Aspose.Html.Dom.Events.IEventListener from its Aspose.Html.Dom.EventTarget after they have completed using the listener. |
IEventTarget | The Aspose.Html.Dom.EventTarget interface is implemented by all Nodes in an implementation which supports the DOM Event Model. Therefore, this interface can be obtained by using binding-specific casting methods on an instance of the Node interface. The interface allows registration and removal of Event Listeners on an Aspose.Html.Dom.EventTarget and dispatch of events to that Aspose.Html.Dom.Events.IEventTarget. |
Delegates
Delegate Name | Description |
---|---|
DOMEventHandler | Represents the callback for event handling. |