Inserting a .scdoc in another scdoc in C#
Ansys Staff
Member, Employee Posts: 24
✭✭✭✭
How can I insert another .scdoc in my active scdoc similar to the insert file option under the assembly tab in Space Claim in C#
Tagged:
2
Answers
-
You can add a reference:
using ScdmScripting = SpaceClaim.Api.V17.Scripting;
Then you can use
string path = "C:\test\test.scdoc"; ScdmScripting.Commands.DocumentInsert.Execute(path);
0