Go to the specified page.
public virtual void GotoPage(
int pageNumber
)
Public Overridable Sub GotoPage(
ByVal pageNumber As Integer
)
public:
virtual void GotoPage(
int pageNumber
)
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. This is the item at index pageNumber - 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.
using Leadtools;
using Leadtools.Controls;
using Leadtools.Document;
using Leadtools.Document.Viewer;
using Leadtools.Codecs;
using Leadtools.Caching;
using Leadtools.Annotations.Engine;
using Leadtools.Ocr;
if (_documentViewer.CurrentPageNumber < _documentViewer.PageCount)
_documentViewer.GotoPage(_documentViewer.CurrentPageNumber + 1);
else
Console.WriteLine("You reached the last page");
Imports Leadtools
Imports Leadtools.Controls
Imports Leadtools.Document
Imports Leadtools.Document.Viewer
Imports Leadtools.Codecs
Imports Leadtools.Caching
Imports Leadtools.Annotations.Engine
Imports Leadtools.Ocr
If _documentViewer.CurrentPageNumber < _documentViewer.PageCount Then
_documentViewer.GotoPage(_documentViewer.CurrentPageNumber + 1)
Else
MessageBox.Show("You reached the last page")
End If
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document