Whether was the Adobe Reader Installed

You can use the component to return whether the Adobe Reader was Installed.
Function: boolean AdobeReaderIsInstalled ();
Description: Returns whether the client installs the PDF Reader.

How to get the adobe reader version number

Get Adobe Reader Version
Function: BSTR GetVersions ();
Description: Returns the version number of the Adobe PDF Reader.

PDF Viewer Component - Page Navigation

Go to the First Page
Function: boolean GotoFirstPage ();
Description: Goes to first page of the PDF document.

Go to the Previous Page
Function: boolean GotoPreviousPage ();
Description: Goes to previous page of the PDF document.

Go to the Next Page
Function: boolean GotoNextPage();
Description: Goes to next page of the PDF document.

Go to the last Page
Function: boolean GotoLastPage();
Description: Goes to last page of the PDF document.

PDF Viewer Component - Go to Page

Function: boolean GotoPage(long n);
Description: Goes to the page n of the PDF document.

PDF Viewer Component - GoForwardStack

Function: boolean GoForwardStack ();
Description: Forwards to the next viewing step.

PDF Viewer Component - GoBackwardStack

Function: boolean GoBackwardStack();
Description: Retraces to previous viewing step.

PDF Viewer Component - ApplyPageMode

Function: boolean ApplyPageMode (BSTR pageMode);
Description: Sets the page mode according to the specified string.
Params:
Possible values: “none”: displays the document, but does not display bookmarks or thumbnails (default) “bookmarks”: displays the document and bookmarks “thumbs”: displays the document and thumbnails.

PDF Viewer Component - ApplyLayoutMode

Function: boolean ApplyLayoutMode (BSTR layoutMode);
Description: Sets the layout mode for a page view according to the specified string.
Params:
Possible values: “DontCare”: use the current user preference “SinglePage”: use single page mode (as it would have appeared in pre-Acrobat 3.0 viewers) “OneColumn”: use one-column continuous mode “TwoColumnLeft”: use two-column continuous mode with the first page on the left “TwoColumnRight”: use two-column continuous mode with the first page on the right.

PDF Viewer Component - ApplyNamedDest

Function: boolean ApplyNamedDest (BSTR nameDest);
Description: Changes the page view to the named destination in the specified string.
Params: The named destination to which the viewer will go.

PDF Viewer Component - PrintWithDialog

Function: boolean PrintWithDialog ();
Description: Prints the document according to the options selected in a user dialog box. The options include embedded printing (printing within a bounding rectangle on a given page), as well as interactive printing to a specified printer. This method returns immediately, even if the printing has not completed. NOTE: If security settings do not allow printing, this method will be ignored.