You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
874 B
C#

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