Gets or sets an array of integers that contain the pages numbers found in the file.
Object.defineProperty(AnnCodecsInfo.prototype, 'pages',
get: function(),
set: function(value)
)
pages: number[];
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
var pageCount = info.get_pages().length;
// Get the page numbers
for (var i = 0; i < pageCount; i++) {
var pageNumber = info.get_pages()[i];
}
For an example, refer to GetInfo
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