Ansys Assistant will be unavailable on the Learning Forum starting January 30. An upgraded version is coming soon. We apologize for any inconvenience and appreciate your patience. Stay tuned for updates.
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)