2014-02-11 85 views
0

我有一個空白文檔說'A'和一個骨架文檔說'B'。在文檔B中,我添加了自定義頁眉和頁腳,例如:頁腳包含一個徽標和地址。而且我的要求是在我的文檔A世代中,我需要將B的頁眉和頁腳內容複製到A的頁眉和頁腳區域。 B的頁眉和頁腳可能包含文本和圖像的組合。我如何使用Microsoft.Office.Interop.Word完成此操作。如果有人需要進一步澄清,請告訴我。自定義頁眉和頁腳使用Microsoft.Office.Interop.Word

回答

1

所以最後我找到了我的問題的答案。我在這裏發佈代碼,所以將來有人會從這段代碼中受益。

B.Sections[1].Headers[WdHeaderFooterIndex.wdHeaderFooterFirstPage].Range.CopyAsPicture(); 
A.Sections[1].Headers[WdHeaderFooterIndex.wdHeaderFooterFirstPage].Range.Paste(); 
B.Sections[1].Footers[WdHeaderFooterIndex.wdHeaderFooterFirstPage].Range.CopyAsPicture(); 
A.Sections[1].Footers[WdHeaderFooterIndex.wdHeaderFooterFirstPage].Range.Paste();