我需要在第一页的末尾插入分页符。以下是选择。我正在尝试插入新页面,然后在该页面的末尾插入分页符。
object what = Microsoft.Office.Interop.Word.WdGoToItem.wdGoToPage;
object which = Microsoft.Office.Interop.Word.WdGoToDirection.wdGoToAbsolute;
object count = 1; //change this number to specify the start of a different page
oWord.Selection.GoTo(ref what, ref which, ref count, ref oMissing);
oWord.Selection.InsertNewPage();
答案 0 :(得分:3)
插入新页面后尝试添加以下内容:
oWord.Selection.InsertBreak(Microsoft.Office.Interop.Word.WdBreakType.wdPageBreak);
答案 1 :(得分:1)
可以通过以下方式将分页符添加到Word文档中:
string pageBreak = "\xC";
或
string pageBreak= "\f";