1
How to make DocumentViewer to jump to specific page
Question asked by Hristo Lungov - 2/26/2021 at 8:20 AM
Answered
I need to be able when the document is opened in DocumentViewer, to be at curtain page.

2 Replies

Reply to Thread
0
Jeff Replied
Marked As Answer
I actually just figured this out the other day. Stick this where ever you're loading your document viewer. 

Hope it helps, cheers!

        function documentLoaded(sender, e) {
            const documentViewer = sender;
            documentViewer.setCurrentPageNumber(page);
        }
0
Hristo Lungov Replied
Thank you!

Reply to Thread