FreeCAD select all objects without Gui

733 Views Asked by At

I am trying to select all the objects in a stp file using FreeCAD with external python script. Is there any way to select all the objects form stp file with freecad external script without opening gui

1

There are 1 best solutions below

0
On

You can iterate over all Objects like this:

for obj in FreeCAD.ActiveDocument.Objects

Then you can do something with it...