namespace Terminal.Gui;
///
/// Describes how behaves. A TabStop is a stop-point for keyboard navigation between Views.
///
public enum TabBehavior
{
///
/// 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
///
/// to control whether a View can focus or not.
///
///
NoStop = 0,
///
/// The View will be a stop-point for keyboard-based navigation across Views (e.g. if the user presses `Tab`).
///
TabStop = 1,
///
/// The View will be a stop-point for keyboard-based navigation across groups. (e.g. if the user presses
/// (`Ctrl+PageDown`)).
///
TabGroup = 2
}