WRAPPER_API long get_Count() const
Description
The get_Count method returns a long value that indicates the number of CoordPoints in this CoordPointCollection.
Example
void CoordPointCollection_getCount(GEOCALCPBW_NAMESPACE::CoordPointCollection & cpc)
{
for(int i = 0; i < cpc.get_Count(); i++)
{
GEOCALCPBW_NAMESPACE::CoordPoint * pt = cpc.get_Point(i);
delete pt;
}
}
Comments
0 comments
Please sign in to leave a comment.