Enum TabBehavior
Describes how TabStop behaves. A TabStop is a stop-point for keyboard navigation between Views.
public enum TabBehavior
Fields
NoStop = 0
The View will not be a stop-point for keyboard-based navigation.
This flag has no impact on whether the view can be focused via means other than the keyboard. Use CanFocus to control whether a View can focus or not.
TabGroup = 2
The View will be a stop-point for keyboard-based navigation across groups. (e.g. if the user presses NextTabGroupKey (
Ctrl+PageDown
)).TabStop = 1
The View will be a stop-point for keyboard-based navigation across Views (e.g. if the user presses
Tab
).