namespace DataTablePrettyPrinter { using System.Data; /// /// Enumerates the alignment of the text represented by a which is to be pretty printing to /// a string. /// public enum TextAlignment { /// /// Text is centered. /// Center, /// /// Text is aligned to the left. /// Left, /// /// Text is aligned to the right. /// Right, } }