Click or drag to resize

DocumentPages Property

Collection of pages in this document.

Namespace:  Atalasoft.Imaging.Codec.Pdf
Assembly:  Atalasoft.dotImage.PdfReader (in Atalasoft.dotImage.PdfReader.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public PageCollection Pages { get; }

Property Value

Type: PageCollection
Examples
C#
for (int i=0; i<document.Pages.Count; i++)
{
   pagesListBox.Items.Add( "Page " + (i + 1)); 
}
See Also