[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.ReportItemCollection.RemoveAt

RemoveAt Method

RemoveAt(int)

Removes a ReportItem object from the ReportItemCollection at the specified index.

Declaration
public void RemoveAt(int index)
Parameters
Type Name Description
int index

A zero-based int index at which to remove the ReportItem object.

Implements
Examples
ReportItemCollection collection = new ReportItemCollection();
collection.Add(new TextBox());
collection.RemoveAt(0);