Error processing SSI file
LEADTOOLS Leadtools.Documents.UI (Leadtools.Documents.UI assembly)

GotoPage Method

Show in webframe
Example 
1-based number of the page to go to.
Go to the specifed page.
Syntax
 function Leadtools.Documents.UI.DocumentViewer.gotoPage( 
   pageNumber 
)

Parameters

ParameterTypeDescription
pageNumberint1-based number of the page to go to.
Remarks

This method moves the view to the page specified by performing the following:

  1. Finds the ImageViewerItem that corresponds to the page number in the ImageViewer. This is the item at index pageNumber - 1

  2. Sets this as the ActiveItem

  3. Calls View.ImageViewer.GotoItem

  4. If thumbnails are used: Ensures that the thumbnail for the page is visible by calling Thumbnails.ImageViewer.EnsureItemVisible

  5. If annotations are used: Sets the corresponding AnnContainer as the ActiveContainer

Example

Start with the example created in DocumentViewer, remove all the code in the Example function and add the code below.

When the user clicks the Example button, we will go to the next page till we reach the last one.

if (this._documentViewer.currentPageNumber < this._documentViewer.pageCount) {
   this._documentViewer.gotoPage(this._documentViewer.currentPageNumber + 1);
} else {
   alert("You reached the last page");
}
See Also

Reference

DocumentViewer Object
DocumentViewer Members

Error processing SSI file
  Leadtools.Documents.UI requires a Document or Medical toolkit license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features