I have a FlowDocument that has been populated with a bunch of tables. Then I do,
DocumentReader = doc;
(DocumentReader is a FlowDocumentPageViewer and doc is FlowDocument)
When I do this, the control jumps to the last page. I tried DocumentReader.FirstPage()
but then realized that the PageCount is 1. (The FlowDocument is really long; I see hundreds of pages in the control. Except when it is loaded I see page 344 of 344).
How can I jump to the first page?