namespace Terminal.Gui; /// /// Determines how items will be arranged in a container when alignment is or , /// [Flags] public enum FlowModes { /// /// The items will be arranged from start (left/top) to end (right/bottom). /// StartToEnd = 0, /// /// The items will be arranged from end (right/bottom) to start (left/top). /// /// /// Not implemented. /// EndToStart = 1, /// /// When aligning via or , the first item will be aligned at the opposite end. /// IgnoreFirst = 2, /// /// When aligning via or , the last item will be aligned at the opposite end. /// IgnoreLast = 4, }