pageAtIndex method
Get the page object at the specified index.
pageIndex The index of the page to retrieve.
example
CPDFPage page = controller.document.pageAtIndex(0);
Implementation
CPDFPage pageAtIndex(int pageIndex) {
return CPDFPage(_channel, pageIndex);
}