[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IFont.Italic

Italic Property

Italic

Gets or sets whether the font style is italic.

Declaration
bool Italic { get; set; }
Property Italic As Boolean
Examples
IRange cell = worksheet.Range["A1"];
cell.Value = "Title";
cell.Font.Italic = true;
bool italic = cell.Font.Italic;