Draworder in exported DXF file

Discuss and ask questions about CAD VCL (Delphi and C++ Builder).

Moderators: SDS, support, admin

Post Reply
digitiger
Posts: 19
Joined: 29 May 2006, 10:01

Draworder in exported DXF file

Post by digitiger » 16 Jun 2006, 11:43

Can we specify draworder for any DXFExportLayer while exporting some vector drawing in multiple layers to DXF layer

support
Posts: 3272
Joined: 30 Mar 2005, 11:36
Contact:

Post by support » 16 Jun 2006, 17:48

Hello,

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;
...
Sergey.


please post questions to the forum or write to support@cadsofttools.com

Post Reply