namespace Terminal.Gui;
/// Text alignment enumeration, controls how text is displayed.
public enum TextAlignment
{
/// The text will be left-aligned.
Left,
/// The text will be right-aligned.
Right,
/// The text will be centered horizontally.
Centered,
///
/// The text will be justified (spaces will be added to existing spaces such that the text fills the container
/// horizontally).
///
Justified
}