Gets the Page at the specified index.

Namespace: TallComponents.Web.Pdf
Assembly: TallComponents.Web.PdfViewer (in TallComponents.Web.PdfViewer.dll) Version: 1.0.14.0

Syntax

C#
public Page this[
	int index
] { get; }
Visual Basic
Public ReadOnly Default Property Item ( _
	index As Integer _
) As Page
	Get
Visual C++
public:
property Page^ default[int index] {
	Page^ get (int index);
}

Parameters

index
Type: System..::..Int32

Field Value

The Page at the specified index.

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeExceptionOccures if index is less than 0 or greater than Count.

See Also