[]
Inserts a new ReportItem into the ReportItemCollection at the specified location.
public void Insert(int index, ReportItem value)
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. |
ReportItemCollection collection = new ReportItemCollection();
collection.Insert(0, new TextBox());