Using OpenXML, can I read the document content by page number?
wordDocument.MainDocumentPart.Document.Body gives content of full document.
wordDocument.MainDocumentPart.Document.Body
List Allparagraphs = wp.MainDocumentPart.Document.Body.OfType().ToList();
List PageParagraphs = Allparagraphs.Where (x=>x.Descendants().Count() ==1) .Select(x => x).Distinct().ToList();