Sets or returns whether strikethrough formatting will be applied to the font.

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

          //--- Get Strikethrough
          bool isStrikethrough = fnt.Strikethrough;

          //--- Set Strikethrough
          fnt.Strikethrough = true;
        
          '--- Get Strikethrough
          Dim isStrikethrough As Boolean = fnt.Strikethrough

          '--- Set Strikethrough
          fnt.Strikethrough = True