DoubleStrikeThrough
Font.DoubleStrikeThrough property
صحيح إذا تم تنسيق الخط كنص يتوسطه خط مزدوج.
public bool DoubleStrikeThrough { get; set; }
أمثلة
يوضح كيفية إضافة خط يتوسطه خط إلى النص.
Document doc = new Document();
Paragraph para = (Paragraph)doc.GetChild(NodeType.Paragraph, 0, true);
Run run = new Run(doc, "Text with a single-line strikethrough.");
run.Font.StrikeThrough = true;
para.AppendChild(run);
para = (Paragraph)para.ParentNode.AppendChild(new Paragraph(doc));
run = new Run(doc, "Text with a double-line strikethrough.");
run.Font.DoubleStrikeThrough = true;
para.AppendChild(run);
doc.Save(ArtifactsDir + "Font.StrikeThrough.docx");
أنظر أيضا
- class Font
- مساحة الاسم Aspose.Words
- المجسم Aspose.Words