[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IFont.Bold

Bold Property

Bold

Gets or sets whether the font is bold.

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