/** * @return whether a run of text will be formatted as strikethrough text. Default is false. */ public bool IsStrikethrough() { CT_TextCharacterProperties rPr = GetRPr(); if (rPr.IsSetStrike()) { return(rPr.strike != ST_TextStrikeType.noStrike); } return(false); }