Underline Property
Underline
Gets or sets the underline type for the font.
Declaration
UnderlineType Underline { get; set; }
Property Underline As UnderlineType
Examples
IFont font = worksheet.Range["A1"].Font;
font.Underline = UnderlineType.Single;
UnderlineType underline = font.Underline;