Number of pages.

Namespace: TallComponents.PDF.Rasterizer
Assembly: TallComponents.PDF.Rasterizer (in TallComponents.PDF.Rasterizer.dll) Version: 3.0.76.0

Syntax

C#
public int Count { get; }
Visual Basic
Public ReadOnly Property Count As Integer
	Get

Examples

CopyC#
for ( int i=0; i<document.<b>Pages.Count</b>; i++ )
{
   pagesListBox.Items.Add( "Page " + ( i + 1 ) ); 
}

See Also