添加样式文本
代码使用 IronWord 库处理 DOCX 文档,首先将现有文档加载到 WordDocument 对象中。然后添加文本并应用各种样式,包括特定的字体族、字体大小、红色文本颜色和多种文本效果。接着,创建一个新的段落对象,并将样式化的文本添加到该段中。然后将该段落添加到 Word 文档中。最后将修改后的文档保存为新文档。
using IronWord; using IronWord.Models; using IronWord.Models.Enums; // Load docx WordDocument doc = new WordDocument("document.docx"); // Configure text Text text = new Text(); text.Text = "Add text using IronWord"; text.Style = new TextStyle() { TextFont = new Font() { FontFamily = "Caveat", FontSize = 72, }, Color = IronWord.Models.Color.Red, IsBold = true, IsItalic = true, Underline = new Underline(), Strike = StrikeValue.Strike, }; Paragraph paragraph = new Paragraph(); // Add text paragraph.AddText(text); // Add paragraph doc.AddParagraph(paragraph); // Export docx doc.SaveAs("save_document.docx");
Imports IronWord Imports IronWord.Models Imports IronWord.Models.Enums ' Load docx Private doc As New WordDocument("document.docx") ' Configure text Private text As New Text() text.Text = "Add text using IronWord" text.Style = New TextStyle() With { .TextFont = New Font() With { .FontFamily = "Caveat", .FontSize = 72 }, .Color = IronWord.Models.Color.Red, .IsBold = True, .IsItalic = True, .Underline = New Underline(), .Strike = StrikeValue.Strike } Dim paragraph As New Paragraph() ' Add text paragraph.AddText(text) ' Add paragraph doc.AddParagraph(paragraph) ' Export docx doc.SaveAs("save_document.docx")
Install-Package IronWord
代码使用 IronWord 库处理 DOCX 文档,首先将现有文档加载到 WordDocument 对象中。然后添加文本并应用各种样式,包括特定的字体族、字体大小、红色文本颜色和多种文本效果。接着,创建一个新的段落对象,并将样式化的文本添加到该段中。然后将该段落添加到 Word 文档中。最后将修改后的文档保存为新文档。