Export layers to DXF
Posted: 09 Jun 2017, 16:13
Hello,
we are migrating an old application with an old version of CADVCL to CADVCL v11.
we used to export the DXF from an EMF format via the following lines :
vDXF := TsgDXFExport.Create;
....
for i := 1 to Emfs.count do
begin
layer := TsgExpDXFLayer.Create (EMFs [i-1].name);
vDXF.CurrentLayer := layer ;
vDXF.LoadFromFile (EMFs [i-1].file);
end;
...
vDXF.SaveToFile(file);
But we haven't found the TsgExpDXFLayer in the v11 version.
What do we have to do ? can you help us ?
Thank you.
we are migrating an old application with an old version of CADVCL to CADVCL v11.
we used to export the DXF from an EMF format via the following lines :
vDXF := TsgDXFExport.Create;
....
for i := 1 to Emfs.count do
begin
layer := TsgExpDXFLayer.Create (EMFs [i-1].name);
vDXF.CurrentLayer := layer ;
vDXF.LoadFromFile (EMFs [i-1].file);
end;
...
vDXF.SaveToFile(file);
But we haven't found the TsgExpDXFLayer in the v11 version.
What do we have to do ? can you help us ?
Thank you.