SetDoubleStrikeout
function SetDoubleStrikeout(isDoubleStrikeout: boolean = null): ApiParagraph
Description
Specifies that the contents of this paragraph are displayed with two horizontal lines through each character displayed on the line.
Parameters
- isDoubleStrikeout
boolean
null Specifies that the contents of the current paragraph are displayed double struck through.
Returns
ApiParagraph
Try It
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("This is a paragraph with the text struck out with two lines.");
oParagraph.SetDoubleStrikeout(true);