get_Count Method

WRAPPER_API long get_Count() const

 

Description

The get_Count method indicates the number of identifiers in this IdentifierCollection.

 

Example

void IdentifierCollection_getCount(GEOCALCPBW_NAMESPACE::IdentifierCollection & idc)

{

for(int i = 0; i < idc.get_Count(); i++)

{

const BmgChar * issuer;

const BmgChar * code;

idc.GetItemByIndex(i, &issuer, &code);

}

}