[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.ReportItemCollection.Remove

Remove Method

Remove(ReportItem)

Removes the specified ReportItem object from the ReportItemCollection.

Declaration
public bool Remove(ReportItem value)
Parameters
Type Name Description
ReportItem value

A ReportItem object to remove.

Returns
Type Description
bool

A bool value. true if the ReportItem was successfully removed; otherwise, false.

Implements
Examples
ReportItemCollection collection = new ReportItemCollection();
ReportItem item = new TextBox();
collection.Add(item);
bool removed = collection.Remove(item);