[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.PageCollection.Contains

Contains Method

Contains(Page)

Gets a value indicating whether the PageCollection contains the specified Page.

Declaration
public bool Contains(Page item)
Parameters
Type Name Description
Page item

A Page object for which to check.

Returns
Type Description
bool

A bool value. true if the PageCollection contains the specified Page; otherwise, false.

Implements
Examples
PageCollection collection = new PageCollection();
Page page = new Page();
collection.Add(page);
bool contains = collection.Contains(page);