cohtml::InputEventPhase
On this page
Types
Name | |
---|---|
enum | PhaseType { NONE = 0, CAPTURING_PHASE = 1, AT_TARGET = 2, BUBBLING_PHASE = 3} Holds information for input event PhaseType. |
Types Documentation
enum PhaseType
Enumerator | Value | Description |
---|---|---|
NONE | 0 | No event is being processed at this time. |
CAPTURING_PHASE | 1 | The event is being propagated through the target’s ancestor objects. |
AT_TARGET | 2 | The event has arrived at the event’s target, event’s node is the one that is being hit by the input. |
BUBBLING_PHASE | 3 | The event is propagating back up through the target’s ancestors in reverse order. |
Holds information for input event PhaseType.