添加样式文本
该代码使用 IronWord 库通过首先将现有文档加载到 WordDocument 对象中来操作 DOCX 文档。 然后添加文本并应用各种样式,包括特定的字体系列、字体大小、红色文字颜色和多种文字效果。 接下来,它创建一个新的Paragraph对象,并将样式文本添加到这个段落中。 段落随后被添加到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 库通过首先将现有文档加载到 WordDocument 对象中来操作 DOCX 文档。 然后添加文本并应用各种样式,包括特定的字体系列、字体大小、红色文字颜色和多种文字效果。 接下来,它创建一个新的Paragraph对象,并将样式文本添加到这个段落中。 段落随后被添加到Word文档中。 最后将修改后的文档另存为新文档。