Export Sheetmetal Flatpattern as sat file

Export Sheetmetal Flatpattern as sat file

Rene-J
Collaborator Collaborator
587 Views
4 Replies
Message 1 of 5

Export Sheetmetal Flatpattern as sat file

Rene-J
Collaborator
Collaborator
Hi

I am trying to save the Sheetmetal flatpattern as sat file.
my program is working.
My problem is if I open the sat file in inventor
it shows up in a assembly.
If I do the same thing manuel, select the flatpattern and save as sat.
This file shows up as a part.
Did I miss something, In the export settings ?
I am using this code.

Dim oDataIO As DataIO
oDataIO = oDoc.ComponentDefinition.DataIO
Dim Expout As String = "FLAT PATTERN SAT"
oDataIO.WriteDataToFile(Expout, "C:\temp\Test.sat)

René J Edited by: Rene-J on May 27, 2010 10:02 PM
0 Likes
588 Views
4 Replies
Replies (4)
Message 2 of 5

YuhanZhang
Autodesk
Autodesk
I could not reproduce this issue, can you supply a data that can recreate this issue? And let me know the version of your Inventor.


If this solves the problem please click ACCEPT SOLUTION so other people can find it easily.



Rocky Zhang
Inventor API PD
Manufacturing Solutions
Autodesk, Inc.

0 Likes
Message 3 of 5

Rene-J
Collaborator
Collaborator
I am using Inventor 2011 Win 7 64 bit

René J
0 Likes
Message 4 of 5

YuhanZhang
Autodesk
Autodesk
I see the same problem, you can use SurfaceBody.DataIO to workaround this:

{code}
oDataIO = oDoc.ComponentDefinition.FlatPattern.SurfaceBodies(1).DataIO
{code}


If this solves the problem please click ACCEPT SOLUTION so other people can find it easily.



Rocky Zhang
Inventor API PD
Manufacturing Solutions
Autodesk, Inc.

0 Likes
Message 5 of 5

Rene-J
Collaborator
Collaborator
Many thanks , it does what I need.

René J
0 Likes