namespace Terminal.Gui;
/// Vertical text alignment enumeration, controls how text is displayed.
public enum VerticalTextAlignment
{
/// The text will be top-aligned.
Top,
/// The text will be bottom-aligned.
Bottom,
/// The text will centered vertically.
Middle,
///
/// The text will be justified (spaces will be added to existing spaces such that the text fills the container
/// vertically).
///
Justified
}