Event.InitEvent

Event.InitEvent method

The InitEvent method is used to initialize the value of an Event created through the IDocumentEvent interface.

public void InitEvent(string type, bool bubbles, bool cancelable)
ParameterTypeDescription
typeStringThe event type.
bubblesBooleanif set to true [bubbles].
cancelableBooleanif set to true [cancelable].

Remarks

This method may only be called before the Event has been dispatched via the DispatchEvent 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