RadControls for Silverlight

Specifies the direction within a user interface (UI) in which a desired focus change request is attempted. The direction is either based on tab order or by relative direction in layout.

Namespace: Telerik.Windows.Controls.GridView
Assembly: Telerik.Windows.Controls.GridView (in Telerik.Windows.Controls.GridView.dll) Version: 2013.1.403.1050

Syntax

C#
public enum FocusNavigationDirection
Visual Basic
Public Enumeration FocusNavigationDirection

Members

Member nameValueDescription
Next0 Move focus to the next focusable element in tab order. Not supported for System.Windows.UIElement.PredictFocus(System.Windows.Input.FocusNavigationDirection).
Previous1 Move focus to the previous focusable element in tab order. Not supported for System.Windows.UIElement.PredictFocus(System.Windows.Input.FocusNavigationDirection).
First2 Move focus to the first focusable element in tab order. Not supported for System.Windows.UIElement.PredictFocus(System.Windows.Input.FocusNavigationDirection).
Last3 Move focus to the last focusable element in tab order. Not supported for System.Windows.UIElement.PredictFocus(System.Windows.Input.FocusNavigationDirection).
Left4 Move focus to another focusable element to the left of the currently focused element.
Right5 Move focus to another focusable element to the right of the currently focused element.
Up6 Move focus to another focusable element upwards from the currently focused element.
Down7 Move focus to another focusable element downwards from the currently focused element.
Home8 Move focus to the first topmost element.
End9 Move focus to the last bottommost element.
Top10 Move focus to the topmost element from the currently focused element.
Bottom11 Move focus to the bottommost element from the currently focused element.
PageDown12 Move focus to another focusable element one page downwards from the current focused element.
PageUp13 Move focus to another focusable element one page upwards from the current focused element.

See Also