Enumeration that represent the direction of navigation via keyboard.
Definition
Namespace:Telerik.Windows.Controls.ScheduleView
Assembly:Telerik.Windows.Controls.ScheduleView.dll
Syntax:
C#
public enum NavigationDirection
Fields
Specify the direction when the Down Arrow is pressed.
C#
Down = 7
Specify the direction when the Home key is pressed.
C#
First = 2
Specify the direction when the End key is pressed.
C#
Last = 3
Specify the direction when the Left Arrow is pressed.
C#
Left = 4
Specify the direction when the Tab key is pressed.
C#
Next = 0
Specify the direction when the PageDown key is pressed.
C#
PageDown = 9
Specify the direction when the PageUp key is pressed.
C#
PageUp = 8
Specify the direction when the Shift + Tab combination is pressed.
C#
Previous = 1
Specify the direction when the Right Arrow is pressed.
C#
Right = 5
Specify the direction when the Up Arrow is pressed.
C#
Up = 6