文檔首頁>>E-iceblue中文文檔>>克隆一個(gè) word 文檔
克隆一個(gè) word 文檔
使用 Spire.Doc,我們可以在 C#中將內(nèi)容從一個(gè) word 文檔復(fù)制到另一個(gè) word 文檔。當(dāng)我們需要從單個(gè)文檔生成大量文檔時(shí),克隆文檔會(huì)容易得多。clone方法加快了word文檔的生成速度,開發(fā)者只需要一行代碼就可以得到word文檔的副本。
現(xiàn)在我們將展示如何在 C# 中克隆 word 文檔的代碼片段。
第 1 步:創(chuàng)建 Document 的新實(shí)例并從文件加載文檔。
Document doc = new Document(); doc.LoadFromFile("Sample.docx",FileFormat.Docx2010);
第2步:克隆word文檔。
doc.Clone();
第 3 步:將文檔保存到文件中。
doc.SaveToFile("Cloneword.docx", FileFormat.Docx2010);
克隆word文檔的有效截圖:
克隆word文檔的完整代碼:
using Spire.Doc; namespace CloneWord { class Program { static void Main(string[] args) { Document doc = new Document(); doc.LoadFromFile("Sample.docx", FileFormat.Docx2010); doc.Clone(); doc.SaveToFile("Cloneword.docx", FileFormat.Docx2010); } } }
歡迎下載|體驗(yàn)更多E-iceblue產(chǎn)品
如需獲取更多產(chǎn)品相關(guān)信息請(qǐng)咨詢慧都在線客服