Hello,
I have code as below but it comes named Figure. How can I create it based on Object?
Geometry,Materials, Static Structural etc.
a = ExtAPI.DataModel.Project.Model.Children for b in a: b.AddFigure()
Hi @aalperakis , you need to reference the created figure:
figure = b.AddFigure()
and then simply rename it:
figure.Name = b.Name