Hi!
How do I iterate the TextStyles defined in a designfile using the C++ Connect API?
I have tried the following, but the iter++ statement won't compile:
DgnFileP dgnObjP = mdlModelRef_getDgnFile(ACTIVEMODEL);
TextStyleCollection coll(*dgnObjP);
TextStyleIterator iter = coll.begin();
TextStyleIterator end = coll.end();
for (; iter!=end; iter++);
{
DgnTextStyleP tsP = (*iter);
WString sName = tsP->GetName();
}