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-poknt for keyboard-based navigation.
///
NoStop = 0,
///
/// The View will be a stop-point for keybaord-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 preesses (`Ctrl-PageDown`).
///
TabGroup = 2,
}