I have a 10x1 table that I have generated in a Word table. Row 1 and row 5 have headings in them (for example). I need row 5 to be at the top of it's own page.
I have tried everything in order to insert a page break:
table.Cell(row, 1).Range.InsertBreak(wdBreakType.wdPageBreak);
table.Cell(row, 1).Range.Characters.Last.InsertBreak(WdBreakType.wdPageBreak);
table.Cell(row, 1).Range.Collapse();
table.Cell(row, 1).Range.InsertBreak(WdBreakType.wdPageBreak);
None of the above work. It looks like the page breaks go outside the table. Obviously this must be possible as inside of work, pressing Ctrl+Enter inside of the table's cell inserts a break properly.
Anyone know how to do this?