Rotates one or more pages with the specified value.
public void RotatePages(
IEnumerable<int> pageNumbers,
int angle
)
Public Sub RotatePages(
ByVal pageNumbers As IEnumerable(Of Integer),
ByVal angle As Integer
)
public:
void RotatePages(
IEnumerable<Int32>^ pageNumbers,
Int32 angle
)
pageNumbers
Page numbers to rotate. This should be one or more item with 1-based page numbers. Use null to rotate all the pages in the document viewer.
angle
Angles in degrees. Must be in 90 degrees increment. The rotation is performed clockwise for positive values and counter-clockwise for negative values.
This method performs the following:
For each page number specified in pageNumbers.
Finds the corresponding DocumentPage object and calls the DocumentPage.Rotate method.
Rotates the corresponding AnnContainer if any.
Resets the text of the page.
The Operation event will occur for each page with the DocumentViewerOperation set to PageRotate
.
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 rotate the current active page by 90 degrees. Clicking the example button again will rotate the page by another 90 degrees.
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;
int pageNumber = _documentViewer.CurrentPageNumber;
_documentViewer.RotatePages(new int[] { pageNumber }, 90);
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
Dim pageNumber As Integer = _documentViewer.CurrentPageNumber
_documentViewer.RotatePages(New Integer() {pageNumber}, 90)
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