Draworder in exported DXF file
Moderators: SDS, support, admin
Draworder in exported DXF file
Can we specify draworder for any DXFExportLayer while exporting some vector drawing in multiple layers to DXF layer
Hello,
It is necessary to create layers in necessary order using the following construction:
Sergey.
please post questions to the forum or write to support@cadsofttools.com
It is necessary to create layers in necessary order using the following construction:
Code: Select all
<b>var</b>
vLayer: TsgExpDXFLayer;
vDXF: TsgDXFExport;
...
<b>begin</b>
vLayer := TsgExpDXFLayer.Create('Layer1');
vDXF.CurrentLayer := vLayer;
...
//Create necessary entities
...
vLayer := TsgExpDXFLayer.Create('Layer2');
vDXF.CurrentLayer := vLayer;
...
please post questions to the forum or write to support@cadsofttools.com