Enum EventPropagations
Event propagation flags.
Namespace: Unity.AppUI.UI
Syntax
[Flags]
public enum EventPropagations
Fields
Name | Description | Value |
---|---|---|
None | Default propagation flags. |
0 |
Bubbles | Event bubbles up the hierarchy. |
1 |
TricklesDown | Event trickles down the hierarchy. |
2 |
Cancellable | Event can be cancelled. |
4 |
SkipDisabledElements | Skip disabled elements. |
8 |
IgnoreCompositeRoots | Ignore composite roots. |
16 |