[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.PageCollection.Item

this Property

this[int]

Gets or sets a specific Page object in the PageCollection by position.

Declaration
public Page this[int index] { get; set; }
Parameters
Type Name Description
int index

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

Property Value
Type Description
Page

A Page object at the specified position.

Implements
Examples
PageCollection collection = new PageCollection();
collection.Add(new Page());
Page page = collection[0];