using Terminal.Gui.Analyzers.Internal.Attributes; namespace Terminal.Gui; /// /// Indicates the dimension for operations. /// [GenerateEnumExtensionMethods] public enum Dimension { /// /// No dimension specified. /// None = 0, /// /// The height dimension. /// Height = 1, /// /// The width dimension. /// Width = 2 }