namespace DataTablePrettyPrinter { using System; using System.Data; /// /// Enumerates the border flags of the text represented by a which is to be drawn on a /// pretty printed string. /// [Flags] public enum Border { /// /// No border. /// None = 0, /// /// Bottom border. /// Bottom = 1, /// /// Left border. /// Left = 2, /// /// Right border. /// Right = 4, /// /// Top border. /// Top = 8, /// /// All borders. /// All = 15, } }