Orientation.cs 257 B

123456789101112
  1. #nullable enable
  2. namespace Terminal.Gui;
  3. /// <summary>Direction of an element (horizontal or vertical)</summary>
  4. public enum Orientation
  5. {
  6. /// <summary>Left to right</summary>
  7. Horizontal,
  8. /// <summary>Bottom to top</summary>
  9. Vertical
  10. }