Enum KeyboardNavigationOperation
Represents an operation that the user is trying to accomplish through a specific input mechanism.
Namespace: UnityEngine.UIElements
Syntax
public enum KeyboardNavigationOperation : int
Remarks
Tests the received callback value for KeyboardNavigationManipulator against the values of this enum to implement the operation in your UI.
Fields
Name | Description | Value |
---|---|---|
None | Default value. Indicates an uninitialized enum value. |
0 |
SelectAll | Selects all UI selectable elements or text. |
1 |
Cancel | Cancels the current UI interaction. |
2 |
Submit | Submits or concludes the current UI interaction. |
3 |
Previous | Selects the previous item. |
4 |
Next | Selects the next item. |
5 |
PageUp | Moves the selection up one page (in a list which has scrollable area). |
6 |
PageDown | Moves the selection down one page (in a list which has scrollable area). |
7 |
Begin | Selects the first element. |
8 |
End | Selects the last element. |
9 |