Files
Terminal.Gui/Terminal.Gui/View/Layout/Side.cs
2024-05-17 12:32:31 -04:00

27 lines
534 B
C#

namespace Terminal.Gui;
/// <summary>
/// Indicates the side for <see cref="Pos"/> operations.
/// </summary>
public enum Side
{
/// <summary>
/// The left (X) side of the view.
/// </summary>
Left = 0,
/// <summary>
/// The top (Y) side of the view.
/// </summary>
Top = 1,
/// <summary>
/// The right (X + Width) side of the view.
/// </summary>
Right = 2,
/// <summary>
/// The bottom (Y + Height) side of the view.
/// </summary>
Bottom = 3
}