WRAPPER_API bool Remove(const BmgChar *issuer)
Description
The Remove method removes the specified identifier from the collection. If the specified identifier does not exist, a GeoCalcException will be thrown with an ErrorCode specifying ParameterNotFound.
Example
void IdentifierCollection_Remove(GEOCALCPBW_NAMESPACE::IdentifierCollection & idc)
{
if(idc.Exists(L"GC"))
{
idc.Remove(L"GC");
}
}
Comments
0 comments
Please sign in to leave a comment.