namespace MLEM.Formatting { /// /// An enumeration that represents a set of alignment options for objects and MLEM.Ui paragraphs. /// public enum TextAlignment { /// /// Left alignment, which is also the default value /// Left, /// /// Center alignment /// Center, /// /// Right alignment. /// In this alignment option, trailing spaces are ignored to ensure that visual alignment is consistent. /// Right } }