EventTarget.DispatchEvent

EventTarget.DispatchEvent method

Dispatches an Event at the specified EventTarget, (synchronously) invoking the affected EventListeners in the appropriate order. The normal event processing rules (including the capturing and optional bubbling phase) also apply to events dispatched manually with dispatchEvent().

public bool DispatchEvent(Event @event)
ParameterTypeDescription
eventEventSpecifies the event type, behavior, and contextual information to be used in processing the event.

Return Value

The return value of indicates whether any of the listeners which handled the event called. If was called the value is false, else the value is true.

Exceptions

exceptioncondition
DOMException

Remarks

Events dispatched in this manner will have the same capturing and bubbling behavior as events dispatched directly by the implementation. The target of the event is the on which is called.

See Also