[]
Removes a ReportItem object from the ReportItemCollection at the specified index.
public void RemoveAt(int index)
Type | Name | Description |
---|---|---|
int | index | A zero-based int index at which to remove the ReportItem object. |
ReportItemCollection collection = new ReportItemCollection();
collection.Add(new TextBox());
collection.RemoveAt(0);