I am creating OpenXML documents in C# for Word and I find always that it's not possible to determine where a page break will appears in the document. This creates the following problem:
I want to insert on the top of each page a little image, which gives a little overview of the elements of the page.
To that effect, is it possible to use conditions such as:
"if(page break reached == true)
then insert a little image on the next page"?
I could use this condition after each paragraph, so I do not have to know where a page break appears. Any other solutions would also help.