Sets or returns whether text will be displayed in bold face.

<p> public boolean Bold{ get; set; }</p>
<p>Public Property Bold() As Boolean</p>

          //--- Get Bold
          bool isBold = fnt.Bold;

          //--- Set Bold
          fnt.Bold = true;
        
          '--- Get Bold
          Dim isBold As Boolean = fnt.Bold

          '--- Set Bold
          fnt.Bold = True