MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / PageCollection Class / Item Property
A zero-based System.Int32 index of the Page to return or set.
Example

In This Topic
Item Property (PageCollection)
In This Topic
Gets or sets a specific Page object in the PageCollection by position.
Syntax
'Declaration
 
Public Default Property Item( _
   ByVal index As Integer _
) As Page
 

Parameters

index
A zero-based System.Int32 index of the Page to return or set.

Property Value

A Page object at the specified position.
Example
PageCollection collection = new PageCollection();
collection.Add(new Page());
Page page = collection[0];
See Also