EventInitEvent Method
The InitEvent(String, Boolean, Boolean) method is used to initialize the value of an Event created through the IDocumentEvent interface.

Namespace: Aspose.Html.Dom.Events
Assembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntax
public void InitEvent(
	string type,
	bool bubbles,
	bool cancelable
)

Parameters

type
Type: SystemString
The event type.
bubbles
Type: SystemBoolean
if set to true [bubbles].
cancelable
Type: SystemBoolean
if set to true [cancelable].
Remarks
This method may only be called before the Event has been dispatched via the DispatchEvent(Event) method, though it may be called multiple times during that phase if necessary. If called multiple times the final invocation takes precedence. If called from a subclass of Event interface only the values specified in the initEvent method are modified, all other attributes are left unchanged.
See Also