Orientation.cs 278 B

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