RadControls for Silverlight

Specifies the possible values for changes in focus when logical and directional navigation occurs.

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

Syntax

C#
public enum KeyboardNavigationMode
Visual Basic
Public Enumeration KeyboardNavigationMode

Members

Member nameValueDescription
Continue0 Each element receives keyboard focus, as long as it is a navigation stop. Navigation leaves the containing element when an edge is reached.
Once1 The container and all of its child elements as a whole receive focus only once. Either the first tree child or the or the last focused element in the group receives focus.
Cycle2 Depending on the direction of the navigation, the focus returns to the first or the last item when the end or the beginning of the container is reached. Focus cannot leave the container using logical navigation.
None3 No keyboard navigation is allowed inside this container.
Contained4 Depending on the direction of the navigation, focus returns to the first or the last item when the end or the beginning of the container is reached, but does not move past the beginning or end of the container.
Local5 Tab Indexes are considered on local sub tree only inside this container and behave like Continue after that.

See Also