[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.TextFormatInfo.Bold

Bold Property

Bold

Gets or sets the top-level font weight for the content of the element.

Returns true if the font weight is bold (700). Otherwise, returns false when the font weight is normal or regular (400).

Declaration
public bool Bold { get; set; }
Public Property Bold As Boolean
Examples
TextFormatInfo textFormat = new TextFormatInfo();
textFormat.Bold = true;
bool bold = textFormat.Bold;