Orientation.cs 240 B

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