[]
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).
public bool Bold { get; set; }
Public Property Bold As Boolean
TextFormatInfo textFormat = new TextFormatInfo();
textFormat.Bold = true;
bool bold = textFormat.Bold;