Hi,
We are using RenderedDocument class to read the content of the document.but we have issue in identifying the page breaks identification within the document. we are expecting to get the page breaks at the place where the each page will end in the word object model but some page breaks are matching with the word object model but some are not, So can any one help me to fix this issue so that I can get the page breaks same as word object model.
we are using Aspose.Words v17.1.0.0. I have attached the sample file as well to reproduce the issue.
Below is the sample code.
RenderedDocument layoutDoc = new RenderedDocument(AsposeDocument);
........
foreach (RenderedPage page in layoutDoc.Pages)
{
......
}