Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


KeyboardNavigationOperation

Represents an operation that the user is trying to accomplish through a specific input mechanism.
Read time 1 minuteLast updated 5 days ago

Definition

public enum KeyboardNavigationOperation

Remarks

Tests the received callback value for KeyboardNavigationManipulator against the values of this enum to implement the operation in your UI.

Fields

Value

Description

BeginSelects the first element.
CancelCancels the current UI interaction.
EndSelects the last element.
MoveLeftMoves to the left.
MoveRightMoves to the right.
NextMoves down to the next item.
NoneDefault value. Indicates an uninitialized enum value.
PageDownMoves the selection down one page (in a list that has a scrollable area).
PageUpMoves the selection up one page (in a list that has a scrollable area).
PreviousMoves up to the previous item.
SelectAllSelects all UI selectable elements or text.
SubmitSubmits or concludes the current UI interaction.