I need to insert a page break at the end of the first page. Below is the selection. I am trying to insert a new page, then insert the page break at the end of that page.
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();