How to use TsgDXFAttdef and TsgDXFAttrib with TDXFExport

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

Moderators: SDS, support, admin

Post Reply
Alexander
Posts: 8
Joined: 17 May 2012, 14:16

How to use TsgDXFAttdef and TsgDXFAttrib with TDXFExport

Post by Alexander » 17 May 2012, 14:40

Hi All,

I found some good examples on how to use these 2 entities with TsgDXFInsert and the TsgCADImage class (demos\CADExportDemo project). Do you have some examples on how to use these entities by means of TsgDXFExport ?

Thanks,
Alexander

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

Re: How to use TsgDXFAttdef and TsgDXFAttrib with TDXFExport

Post by support » 18 May 2012, 10:55

Hello.
TsgDXFExport doesn't provide methods to export attributes and attribute definitions. This class is outdated. We recommend using TsgCADImage and TsgCADtoDXF classes as shown in CADExportDemo project.

Alexander.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Alexander
Posts: 8
Joined: 17 May 2012, 14:16

Re: How to use TsgDXFAttdef and TsgDXFAttrib with TDXFExport

Post by Alexander » 20 May 2012, 21:04

Hi,

According to your suggestions, I have migrated the existing code to use the TsgCADImage and TsgCADtoDXF classes. All tests I made failed: exception throw on SaveToFile. The same happen when modifing the CADExportDemo project.
Here the code:

var
vDXFExport: TsgCADtoDXF;
begin
try
if FCADFile <> nil then
FCADFile.Free;
FCADFile := TsgCADImage.Create;
FCADFile.Converter.InitializeSections;
//add or not DXF entities to CADFile
........
vDXFExport := TsgCADtoDXF.Create(FCADFile);
vDXFExport.SaveToFile(fileName); //exception thown !!
finally
FCADFile := nil;
vDXFExport.Free;
vDXFExport := nil;
end;

After a while I found out that adding the line FCADFile.GetExtents magic happens: no exception !
So the modified the code looks like this:

.......
//add or not DXF entities to CADFile
//export to DXF file
FCADFile.GetExtents;// ??
vDXFExport := TsgCADtoDXF.Create(FCADFile);
vDXFExport.SaveToFile(datName);
finally
.......

Is it a bug or a feature ?

Thanks in advance,
Alexander


PS. It would be advisable to mark the TsgDXFExport class as deprecated, either the documentation nor the examples give a hint about this state of the class.

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

Re: How to use TsgDXFAttdef and TsgDXFAttrib with TDXFExport

Post by support » 21 May 2012, 12:17

Hello Alexander.
GetExtents method calculates extents for all layouts and sets the model as current layout. The current layout must be specified before export. You can set CurrentLayout instead GetExtents call:

Code: Select all

var
  line: TsgDXFLine;
  Image: TsgCADImage;
  vExp: TsgCADtoDXF;
begin
  Image := TsgCADImage.Create;
  Image.Converter.InitializeSections();
  Image.CurrentLayout := Image.Layouts[0];
  
  line := TsgDXFLine.Create();
  line.Point := MakeFPoint(80, 100, 0);
  line.Point1 := MakeFPoint(180, 200, 0);
  line.Color := clBlue;

  Image.Converter.Loads(line);
  Image.Converter.OnCreate(line);
  Image.CurrentLayout.AddEntity(line);

  vExp := TsgCADtoDXF.Create(Image);
  vExp.SaveToFile('d:\1.dxf');
The documentation describes TsgDXFExport class is obsolete, please check Welcome, What's New, demo topics.

Alexander.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Post Reply