namespace Terminal.Gui;
///
/// Describes the highlight style of a view.
///
[Flags]
public enum HighlightStyle
{
///
/// No highlight.
///
None = 0,
#if HOVER
///
/// The mouse is hovering over the view.
///
Hover = 1,
#endif
///
/// The mouse is pressed within the .
///
Pressed = 2,
///
/// The mouse is pressed but moved outside the .
///
PressedOutside = 4
}