[]
Gets or sets whether the font is bold.
bool Bold { get; set; }
Property Bold As Boolean
IRange cell = worksheet.Range["A1"]; cell.Value = "Title"; cell.Font.Bold = true; bool bold = cell.Font.Bold;