[]
Removes the specified ReportItem object from the ReportItemCollection.
public bool Remove(ReportItem value)
| Type | Name | Description |
|---|---|---|
| ReportItem | value | A ReportItem object to remove. |
| Type | Description |
|---|---|
| bool | A bool value. |
ReportItemCollection collection = new ReportItemCollection();
ReportItem item = new TextBox();
collection.Add(item);
bool removed = collection.Remove(item);