Sets or returns a boolean that represents if a character run has the Strikethrough effect, displaying a single line through the text.

<table class="wysiwyg-macro" data-macro-name="unmigrated-wiki-markup" style="background-image: url(/plugins/servlet/confluence/placeholder/macro-heading?definition=e3VubWlncmF0ZWQtd2lraS1tYXJrdXB9&amp;locale=en_GB&amp;version=2); background-repeat: no-repeat;" data-macro-body-type="PLAIN_TEXT"><tr><td class="wysiwyg-macro-body"><pre>
 public boolean Strike{ get; set; }
</pre></td></tr></table>
<p>Public Property Strike() As Boolean</p>

MS Word equivalent: Format menu > Font... > Font tab > Effects section > Strikethrough


          //--- Return Strike
          bool strike = oFont.Strike;

          //--- Set Shadow
          oFont.Strike = true;
        

          '--- Return Strike
          Dim strike As Boolean = oFont.Strike

          '--- Set Strike
          oFont.Strike = True