Version

TabNavigation Enumeration

Determines the method of navigation when the user presses the tab key.
Syntax
'Declaration
 
Public Enum TabNavigation 
   Inherits System.Enum
public enum TabNavigation : System.Enum 
Members
MemberDescription
DefaultThe actual value is determined at a higher level of the property resolution hierarchy.
NextActivityPressing the tab key navigates to the next visible activity following the currently selected one, or the previous one when pressed in conjunction with the shift key. When the last visible activity is selected, this action navigates to the first visible one, i.e., the focus "wraps around" to the beginning. When the first visible activity is selected, and the shift key is also pressed, this action navigates to the last visible one, i.e., the focus "wraps around" to the end.
NextControlPressing the tab key navigates to the next control in the tab order, or the previous control when pressed in conjunction with the shift key. Note that this is handled by the container; UltraTimelineView simply returns false from IsInputKey method under this setting.
NextControlOnLastActivityPressing the tab key navigates to the next visible activity, and navigates to the next control in the tab order when the last visible activity is selected. When the shift key is also pressed, navigation behavior is similar, but in the opposite direction.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also