Hello my friends, I need a fast way to select all occurrences of a specified object definition in any model within a group.
Of course i can create a modellist of all models in that group and then loop through that list to search for an occurrence of the object in every model separately, but there must be a faster way. Any ideas?
M. Zschuckelt on
I assume you are writing a report?
var aModellist = myGroup.ModelList();
var aObjOccList = myObjDef.OccList(aModellist);
Is that fast enough?