[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.PageCollection.Insert

Insert Method

Insert(int, Page)

Inserts a new Page into the PageCollection at the specified location.

Declaration
public void Insert(int index, Page value)
Parameters
Type Name Description
int index

A zero-based int index indicating the position at which to insert the Page object.

Page value

A Page object to insert.

Implements
Examples
PageCollection collection = new PageCollection();
collection.Insert(0, new Page());