[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.PageCollection.Remove

Remove Method

Remove(Page)

Removes the specified Page object from the PageCollection.

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

A Page object to remove.

Returns
Type Description
bool

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

Implements
Examples
PageCollection collection = new PageCollection();
Page page = new Page();
collection.Add(page);
bool removed = collection.Remove(page);