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