Vb.Net - Export a sheet metal "Flat Pattern" dxf file without bend lines

Vb.Net - Export a sheet metal "Flat Pattern" dxf file without bend lines

isocam
Collaborator Collaborator
348 Views
1 Reply
Message 1 of 2

Vb.Net - Export a sheet metal "Flat Pattern" dxf file without bend lines

isocam
Collaborator
Collaborator

Can anybody help?

 

I am using the following Vb.Net code to export a sheet metal flat pattern dxf file.

 

Dim oDataIO As DataIO

oDataIO = oDoc.ComponentDefinition.DataIO

Dim sOut As String

sOut = "FLAT PATTERN DWG?AcadVersion=2000&OuterProfileLayer=Outer"

oDataIO.WriteDataToFile(sOut, DxfFileName)

 

The code works ok.

 

However,

 

The dxf file that it creates also includes bend lines.

 

Is there anyway the above code can be changed that these bend lines are not created in the dxf file?

 

Many thanks in advance!

 

Darren

 

0 Likes
Accepted solutions (1)
349 Views
1 Reply
Reply (1)
Message 2 of 2

Michael.Navara
Advisor
Advisor
Accepted solution

I'm not sure you can omit bend lines but you can hide them using InvisibleLayers option.

0 Likes