Dxf Version in Jlink
I need to Export the drawing file to dxf format usinh Jlink .
Creo provides an option to export an drawing file to dxf is as follows,
DXFExportInstructions dxfexportInstructions = pfcModel.DXFExportInstructions_Create();
draw.Export(draw.GetFullName(), dxfexportInstructions);
It works fine ,It will convert the drawing to DXF in a lowest version 2007 ,but i want to change the dxf Settings using Jlink.please guide me to solve this.

