Question
Constraint acquisition model(How do I get the right array model inside the constraints)
ComponentConstraint constraint = componentConstraints.get(i);
Selection compRef = constraint.GetAssemblyReference();
Model model = compRef.GetSelModel();
Hello,During the development, I encountered that when the Model is an array, the assembly item model obtained from the constraint is not the correct array model. I used the above code to obtain the model according to the principle that the array parts indicated by the red arrow were obtained, but the source file indicated by the green arrow was obtained. Is there a way to get the parts of the array?


