Go to the specified page.
DocumentViewer.prototype.gotoPage = function(
pageNumber
)
gotoPage(
pageNumber: number
): void;
pageNumber
1-based number of the page to go to.
This method moves the view to the page specified by performing the following:
Finds the ImageViewerItem that corresponds to the page number in the imageViewer - 1
Sets this as the ActiveItem
If thumbnails are used: Ensures that the thumbnail for the page is visible by calling Thumbnails.ImageViewer.EnsureItemVisible
If annotations are used: Sets the corresponding AnnContainer as the ActiveContainer
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");
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET