Enum EventPhase
- Namespace
- AngleSharp.Dom.Events
- Assembly
- AngleSharp.dll
Represents the different phases of an event.
[DomName("Event")]
public enum EventPhase : byte
- Extension Methods
Fields
[DomName("AT_TARGET")] AtTarget = 2
When an event is dispatched it will be in this phase on its target attribute value.
[DomName("BUBBLING_PHASE")] Bubbling = 3
When an event is dispatched to an object that participates in a tree it will be in this phase after it reaches its target attribute value.
[DomName("CAPTURING_PHASE")] Capturing = 1
When an event is dispatched to an object that participates in a tree it will be in this phase before it reaches its target attribute value.
[DomName("NONE")] None = 0
Events not currently dispatched are in this phase.