編輯文字
使用 IronWord 編輯現有 Word 文檔中的文字,方法是在文檔樹中找到文字並更改其內容。 上面的代碼示例訪問位於第一段的TextRun。 然後,它將 TextRun 內容更改為「這是編輯後的文字。」此操作將僅更改文本內容,不會改變與該 TextRun 相關的任何樣式。
using IronWord; // Open existing Word WordDocument doc = new WordDocument("sample.docx"); // Edit existing text doc.Paragraphs[0].Texts[0].Text = "This is the edited text."; // Export docx doc.SaveAs("document.docx");
Imports IronWord ' Open existing Word Private doc As New WordDocument("sample.docx") ' Edit existing text Private doc.Paragraphs(0).Texts(0).Text = "This is the edited text." ' Export docx doc.SaveAs("document.docx")
Install-Package IronWord
使用 IronWord 編輯現有 Word 文檔中的文字,方法是在文檔樹中找到文字並更改其內容。 上面的代碼示例訪問位於第一段的TextRun。 然後,它將 TextRun 內容更改為「這是編輯後的文字。」此操作將僅更改文本內容,不會改變與該 TextRun 相關的任何樣式。