Gets or sets the page at the specified zero based index in the pages collection.

Namespace: EvoPdf
Assembly: evohtmltopdf (in evohtmltopdf.dll) Version: 4.12.0.0

Syntax

C#
public PdfPage this[
	int pageIndex
] { get; set; }
Visual Basic
Public Default Property Item ( 
	pageIndex As Integer
) As PdfPage
	Get
	Set
Visual C++
public:
property PdfPage^ default[int pageIndex] {
	PdfPage^ get (int pageIndex);
	void set (int pageIndex, PdfPage^ value);
}

Parameters

pageIndex
Type: System..::..Int32
The zero based page index in the collection.

Return Value

Type: PdfPage
The PDF page at the specified index

See Also