[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Document.ParameterCollection.Contains

Contains Method

Contains(string)

Determines whether the collection contains a parameter with the specified name.

Declaration
public bool Contains(string name)
Parameters
Type Name Description
string name

The name of the parameter to locate.

Returns
Type Description
bool

true if the collection contains a parameter with the specified name; otherwise, false.

Contains(Parameter)

Determines whether the ParameterCollection contains a specific value.

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

The object to locate in the ParameterCollection.

Returns
Type Description
bool

true if item is found in the collection; otherwise, false.

Implements