mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-01 16:59:35 +01:00
13 lines
257 B
C#
13 lines
257 B
C#
#nullable enable
|
|
namespace Terminal.Gui;
|
|
|
|
/// <summary>Direction of an element (horizontal or vertical)</summary>
|
|
public enum Orientation
|
|
{
|
|
/// <summary>Left to right</summary>
|
|
Horizontal,
|
|
|
|
/// <summary>Bottom to top</summary>
|
|
Vertical
|
|
}
|