如何使用 Microsoft.office.interop.word 在文档中创建不同的首页页眉和页脚。
我已经尝试了以下代码,但仅在第一页中,页眉和页脚即将到来。我想要它以另一种方式(第一页不应该有页眉和页脚)。谁能帮帮我吗 ?我尝试了很多。
Microsoft.Office.Interop.Word.Application w = new icrosoft.Office.Interop.Word.Application();
Microsoft.Office.Interop.Word.Document doc;
w.ActiveDocument.PageSetup.DifferentFirstPageHeaderFooter = -1;
doc.ActiveWindow.ActivePane.View.SeekView = WdSeekView.wdSeekCurrentPageHeader;
doc.ActiveWindow.Selection.TypeText("HEader Text");