Well, had what I thought was a working solution. I was looping through the document using the <w:lastRenderedPageBreak /> elements. This was going fine till I realized that if you simply hit [Enter] to create the page break.
IE type type enter enter {go over the page break} enter enter type type
In that scenario you get absolutely no indication that there is a page break there in the XML.
**DOCUMENT.XML**
- <w:p w:rsidR="00266B4A"
w:rsidRDefault="00266B4A" w:rsidP="00266B4A">
<w:t xml:space="preserve">All my fun TEXT.</w:t>
</w:r>
</w:p>
<w:p w:rsidR="0061403F"
w:rsidRDefault="0061403F" w:rsidP="00266B4A"
/>
<w:p w:rsidR="00266B4A"
w:rsidRDefault="00266B4A" w:rsidP="00266B4A"
/>
<w:p w:rsidR="00266B4A"
w:rsidRDefault="00266B4A" w:rsidP="00266B4A"
/>
<w:p w:rsidR="00266B4A"
w:rsidRDefault="00266B4A" w:rsidP="00266B4A"
/>
<w:p w:rsidR="00266B4A"
w:rsidRDefault="00266B4A" w:rsidP="00266B4A"
/>
<w:p w:rsidR="00266B4A"
w:rsidRDefault="00266B4A" w:rsidP="00266B4A"
/> <-{page break}
<w:p w:rsidR="00266B4A"
w:rsidRDefault="00266B4A" w:rsidP="00266B4A"
/>
<w:p w:rsidR="00266B4A"
w:rsidRDefault="00266B4A" w:rsidP="00266B4A"
/>
<w:p w:rsidR="00266B4A"
w:rsidRDefault="00266B4A" w:rsidP="00266B4A"
/>
- <w:p w:rsidR="00266B4A"
w:rsidRDefault="00266B4A" w:rsidP="00266B4A">
<w:t xml:space="preserve">All my fun TEXT.</w:t>
</w:r>
</w:p>
Notice the distinct lack of any indication of a page break.
Still looking for suggestions on this.
Thanks!