SetItalic
function SetItalic(isItalic: boolean = null): void
Description
Sets the italic property to the text characters in the current cell or cell range.
Parameters
- isItalic
boolean
null Specifies that the contents of the current cell / cell range are displayed italicized.
Returns
void
Try It
var oWorksheet = Api.GetActiveSheet();
oWorksheet.GetRange("A2").SetValue("Italicized text");
oWorksheet.GetRange("A2").SetItalic(true);
oWorksheet.GetRange("A3").SetValue("Normal text");