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

public boolean Strike{ get; set; }
Public Property Strike() As Boolean

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