Export2DOption
Hi,
I'm trying to export creo drawing to dxf with WebLink application, but I don't know how to use pfcExport2DOption. For PDF there's a documented way how to use options:
var expInstructions = pfcCreate("pfcDXFExportInstructions").Create();
var expInstructions = pfcCreate("pfcPDFExportInstructions").Create();
var pdfOptions = pfcCreate("pfcPDFOptions");
...
expInstructions.Options = pdfOptions;
But for DXF (pfcExport2DOption) can't find a way to pass options to export instructions.
