SetStrikeout
Specifies that the contents of this paragraph are displayed with a single horizontal line through the center of the line.
Parameters:
Name |
Type |
Description |
isStrikeout |
boolean
|
Specifies that the contents of the current paragraph are displayed struck through. |
Returns:
- Type
-
ApiParagraph
Example
Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("This is a paragraph with the text struck out with a single line.");
oParagraph.SetStrikeout(true);
builder.SaveFile("docx", "SetStrikeout.docx");
builder.CloseFile();
Resulting document