[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.ReportItemCollection.Insert

Insert Method

Insert(int, ReportItem)

Inserts a new ReportItem into the ReportItemCollection at the specified location.

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

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

ReportItem value

A ReportItem object to insert.

Implements
Examples
ReportItemCollection collection = new ReportItemCollection();
collection.Insert(0, new TextBox());