get_Item Method

WRAPPER_API const BmgChar *get_Item(const BmgChar *issuer) const

 

Description

The get_Item method returns the code that corresponds to the specified issuer.  If the specified issuer does not exist, a GeoCalcException will be thrown with an ErrorCode specifying ParameterNotFound.

 

Example

void IdentifierCollection_getItem(GEOCALCPBW_NAMESPACE::IdentifierCollection & idc)

{

if(idc.Exists(L"GC"))

{

const BmgChar * code = idc.get_Item(L"GC");

}

}