SaveAs Stp

SaveAs Stp

Anonymous
Not applicable
3,425 Views
4 Replies
Message 1 of 5

SaveAs Stp

Anonymous
Not applicable

I'm trying to start up Inventor, open an assembly and save it to stp using API (C#).

 

This works perfectly fine with parts, but not with assemblies.

 

doc.SaveAs("fil.stp", true); // doc is an iam-file (Inventor.Document)

 

...gives me error: "Invalid parameter... HRESULT: 0x80070057 (E_INVALIDARG))".

 

I start up Inventor visually so I know that the assembly opens up correctly with all parts and subassemblies.

If I do it manually it works fine with Export -> CAD Format -> STEP (stp).

 

Does anyone have any ideas why or what I'm doing wrong?

 

Thanks!

 

0 Likes
Accepted solutions (1)
3,426 Views
4 Replies
Replies (4)
Message 2 of 5

sanjay.ramaswamy
Alumni
Alumni

Can you try providing that full path for the output file, rather than just "fil.stp"? I tried the following VBA macro on the active assembly document in Inventor 2011 and it works for me.

 

Sub SaveAsSTP()

    Dim oDoc As Document
    Set oDoc = ThisApplication.ActiveDocument
    
    Call oDoc.SaveAs("C:\temp\test.stp", True)
    
End Sub

 

0 Likes
Message 3 of 5

Anonymous
Not applicable
Accepted solution

I found the problem. Inventor was not ready loading when I opened the assembly. Thanks!

0 Likes
Message 4 of 5

Anonymous
Not applicable

Hi,

 

Would it be possible to add options for the step export within the code?

Specifically, does the export step have savecopyas options that can be set just like in the dxf/pdf translator addin?

 

Goal: I want to preset the export options for the step file.

 

options I would like to "grab" & "set":

- Application Protocol: 203 or 214, then 214 alone, 214 IS or 214 DIS.

- Include Sketches (True/False I guess)

 

 

regards

 

0 Likes
Message 5 of 5

Ktelang
Collaborator
Collaborator

How can I access the saving options.

I want to exclude the sketches while saving as stp

------------------------------------------------------------------------------
Config :: Intel (R) Xeon (R) CPU E31245 @ 3.30 GHz, 16.0 GB, 64bit win7
Inventor 2013 and Vault Basic 2013
-----------------------------------------------------------------------------
0 Likes