namespace com.azkoss.excellite { using System; /// ///Underline styles used in ExcelFont.UnderlineStyle. /// public enum UnderlineStyle { // Fields /// ///Double underline. Underlines only cell data. /// Double = 2, /// ///Double accounting underline. Underlines whole cell. /// DoubleAccounting = 0x22, /// ///No underline. /// None = 0, /// ///Single underline. Underlines only cell data. /// Single = 1, /// ///Single accounting underline. Underlines whole cell. /// SingleAccounting = 0x21 } }