namespace Terminal.Gui;
/// Describes render stylistic selections of a
public class TabStyle
{
/// True to show a solid box around the edge of the control. Defaults to true.
public bool ShowBorder { get; set; } = true;
///
/// True to show the top lip of tabs. False to directly begin with tab text during rendering. When true header
/// line occupies 3 rows, when false only 2. Defaults to true.
/// When is enabled this instead applies to the bottommost line of the control
///
public bool ShowTopLine { get; set; } = true;
/// True to render tabs at the bottom of the view instead of the top
public bool TabsOnBottom { get; set; } = false;
}