VerticalTextAlignment.cs 564 B

1234567891011121314151617181920
  1. namespace Terminal.Gui;
  2. /// <summary>Vertical text alignment enumeration, controls how text is displayed.</summary>
  3. public enum VerticalTextAlignment
  4. {
  5. /// <summary>The text will be top-aligned.</summary>
  6. Top,
  7. /// <summary>The text will be bottom-aligned.</summary>
  8. Bottom,
  9. /// <summary>The text will centered vertically.</summary>
  10. Middle,
  11. /// <summary>
  12. /// The text will be justified (spaces will be added to existing spaces such that the text fills the container
  13. /// vertically).
  14. /// </summary>
  15. Justified
  16. }