Hello
Is it possible to name PartFamilyName in an incremental way. For example, I want to do something similar to what I have shown below:
feature
User.Objects.GetElementsInCell Bentley.GC.Features.Solid
{
Cell = aCell;
PartFamilyName = 'Pier' + Series(0,20,1);
PartName = 'Foundations';
}
The above does not work. I have also tried to write a script, and while it does seem to work for some things it does not always work. I have pasted in the script below.