In this example we add some double strikethrough styled text to
a document.
using (Doc doc = new Doc()) {
string theText;
theText = "Gallia est omnis divisa in partes tres, quarum unam incolunt Belgae, aliam Aquitani, tertiam qui ipsorum lingua Celtae, nostra Galli appellantur.";
doc.Rect.Inset(20, 40);
doc.TextStyle.Size = 96;
doc.TextStyle.Strike2 = true;
doc.AddText(theText);
doc.Save(Server.MapPath("stylestrike2.pdf"));
}
using (Doc doc = new Doc()) {
string theText;
theText = "Gallia est omnis divisa in partes tres, quarum unam incolunt Belgae, aliam Aquitani, tertiam qui ipsorum lingua Celtae, nostra Galli appellantur.";
doc.Rect.Inset(20, 40);
doc.TextStyle.Size = 96;
doc.TextStyle.Strike2 = true;
doc.AddText(theText);
doc.Save(Server.MapPath("stylestrike2.pdf"));
}