Specifies that the contents of the current cell / cell range are displayed along with a line appearing directly below the character.
Name | Type | Description |
undelineType | 'none' | 'single' | 'singleAccounting' | 'double' | 'doubleAccounting' | Specifies the type of the line displayed under the characters. The following values are available:
|
builder.CreateFile("xlsx"); var oWorksheet = Api.GetActiveSheet(); oWorksheet.GetRange("A2").SetValue("The text underlined with a single line"); oWorksheet.GetRange("A2").SetUnderline("single"); oWorksheet.GetRange("A4").SetValue("Normal text"); builder.SaveFile("xlsx", "SetUnderline.xlsx"); builder.CloseFile();