C# 複製Word(複製全部內容、部分內容、頁首頁尾)

來源:互聯網
上載者:User

標籤:doc   載入   word文檔   size   get   -o   des   部分   test   

本篇樣本將介紹C# 複製Word文檔的方法。根據不同的需要,我們將複製Word文檔分三種情況來講述,具體包括以下幾點:

  • 複製整個Word文檔
  • 複製文檔中的部分內容
  • 複製頁首或者頁尾工具使用
  • Free Spire.Doc for .NET 6.3
  • Visual Studio
    PS:在以下樣本中需要添加引用類庫Spire.Doc.dll。(dll可在安裝路徑下的Bin檔案夾裡擷取dll)
樣本示範1.複製全部文檔內容

來源文件:

需要複製到以下目的文件:

【C#】

using Spire.Doc;namespace CopyWord_Doc{    class Program    {        static void Main(string[] args)        {            //建立Word文檔1,用於載入來源文件            Document sourceDoc = new Document("sample.docx");            //建立Word文檔2,用於載入複製內容的目的文件            Document destinationDoc = new Document("target.docx");            //遍曆源word文檔中的所有section,並把內容複寫到目標word文檔            foreach (Section sec in sourceDoc.Sections)            {                foreach (DocumentObject obj in sec.Body.ChildObjects)                {                    destinationDoc.Sections[0].Body.ChildObjects.Add(obj.Clone());                }            }            //儲存並開啟複製的目的文件            destinationDoc.SaveToFile("target.docx", FileFormat.Docx2010);            System.Diagnostics.Process.Start("target.docx");        }    }}

複製結果:

2. 複製部分內容(帶格式複製)

【C#】

using Spire.Doc;using Spire.Doc.Documents;namespace CopyPara_Doc{    class Program    {        static void Main(string[] args)        {            //建立Word文檔1,載入來源文件            Document doc1 = new Document();            doc1.LoadFromFile("sample.docx");            //建立一個空白文檔,作為複製內容的目的文件            Document doc2 = new Document();            //擷取Word文檔1第一節的第一段和第二段            Section s = doc1.Sections[0];            Paragraph p1 = s.Paragraphs[0];            Paragraph p2 = s.Paragraphs[1];            //在Word文檔2中添加Section,並將文檔1中的第一、二段的內容複寫到文檔2中            Section s2 = doc2.AddSection();            Paragraph NewPara1 = (Paragraph)p1.Clone();            s2.Paragraphs.Add(NewPara1);            Paragraph NewPara2 = (Paragraph)p2.Clone();            s2.Paragraphs.Add(NewPara2);            //儲存並開啟複製後的文檔            doc2.SaveToFile("copy.docx", FileFormat.Docx2010);            System.Diagnostics.Process.Start("copy.docx");        }    }}

來源文件:

複製結果:

3.複製頁首或頁尾

這裡以複製頁首為例
來源文件中的頁首效果:

【C#】

using Spire.Doc;namespace CopyHeaderAndFooter_Doc{    class Program    {        static void Main(string[] args)        {            //建立Word文檔1,並載入帶頁首的來源文件            Document doc1 = new Document();            doc1.LoadFromFile("test1.docx");            //擷取文檔1的頁首            HeaderFooter Header = doc1.Sections[0].HeadersFooters.Header;            //建立文檔2,並載入目的文件            Document doc2 = new Document("test2.docx");            //遍曆文檔2中的所有Section            foreach (Section section in doc2.Sections)            {                foreach (DocumentObject obj in Header.ChildObjects)                {                    //將複製的頁首對象添加到section                    section.HeadersFooters.Header.ChildObjects.Add(obj.Clone());                }            }            //儲存並開啟文檔            doc2.SaveToFile("copyHeader.docx", FileFormat.Docx2013);            System.Diagnostics.Process.Start("copyHeader.docx");        }    }}

複製結果:

同樣複製頁尾也是可以的。

以上為本次樣本介紹的全部內容。
如需轉載,請註明出處。

C# 複製Word(複製全部內容、部分內容、頁首頁尾)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.