3D Design

3D Design

How can I select all bodies in the design from within a SpaceClaim script?

    • FAQFAQ
      Participant

      There are a couple simple options that can be used to do this. One option is to use the syntax: targets = Selection.SelectAll() And another options is to use: part = Window.ActiveWindow.Document.MainPart targets = Selection.Create(part.Bodies)