Exists Method

RAPPER_API bool Exists(const BmgChar *name) const

 

Description

The Exists method indicates if there exists a parameter with the specified name in this ParameterCollection.

 

Example

void ParameterCollection_Exists(GEOCALCPBW_NAMESPACE::ParameterCollection & pc, BmgChar * parName)

{

if(pc.Exists(parName))

{

pc.Remove(parName);

}

}