Gets or sets an array of integers that contain the pages numbers found in the file.
public int[] Pages { get; set; }
Public Property Pages As Integer()
@property (nonatomic) NSArray* pages;
public int[] getPages()
public void setPages(int[] value)
public:
property array<Int32>^ Pages
{
array<Int32>^ get()
void set(array<Int32>^ value)
}
An array of integers that contain the pages numbers found in the file.
If the file contains valid LEADTOOLS Annotations, the value of Pages will be an array of integers which contain the number of each page found in the file where each page is an Annotations Container.
To get the number of pages (and their values) in the file, use the following code:
// Get the number of pages
int pageCount = info.Pages.Count;
// Get the page numbers
for (int i = 0; i < pageCount; i++) {
int pageNumber = info.Pages[i];
}
// Get the number of pages
var pageCount = info.get_pages().length;
// Get the page numbers
for (var i = 0; i < pageCount; i++) {
var pageNumber = info.get_pages()[i];
}
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