Click or drag to resize

EventPhase Enumeration

Represents the DOM event phases.

Namespace:  DotNetBrowser.Dom.Events
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
public enum EventPhase
Members
  Member nameValueDescription
Unspecified0 The event phase is not specified.
CapturingPhase1 The event is moving from the document root down the event target.
AtTarget2 The event is being evaluated at the event target.
BubblingPhase3 The event is moving from the event target up to the root.
See Also