How do I jump to a given PDF page and show a specific region (a point)?

Q:

I am using PDFNet PDFVIewCtrl in my app to view and edit PDF files. Now would like to add an option to automatically jump to a given page and show a specific region (a point). What are my options?

A: One way to implement the

required functionality with v.5.7 is using PDFViewCtr.ShowRect(page_num, Rect).

This method should allow you to show the required rectangle in the view. If you want to keep the same zoom, you can set the width/height of the rectangle to be the size of the control and the center of the rectangle to be the focus point.