Back to DOM
DOM.Enums.StrikValue
Namespace: DOM.Enums
Specifies the type of strike-through for text.
3 members
Fields
DoubleStrike
Double strike-through.
NoStrike
No strike-through.
SingleStrike
Single strike-through.
Specifies the type of strike-through for text.
3 members
Double strike-through.
No strike-through.
Single strike-through.
Create professional documents in .NET without the complexity of OpenXML or Word Interop.
var doc = new WordDocument();
doc.AddParagraph()
.AddText("Invoice")
.SetHeading(HeadingLevel.Title);
doc.Save("invoice.docx");