Page 1 of 1

Setting AutoCad Variables

Posted: 30 Apr 2008, 10:42
by aby
Hi,

How can I set global AutoCad Variables in this library ? For example

PDSIZE = 10
PDMODE = 35

If I read a file that contains this settings it is showing exactly what it reads. But when I save as DXF and read from, looses the settings.

What can it be done.

Thanks

Aby

Re: Setting AutoCad Variables

Posted: 04 May 2008, 17:52
by support
Hi Aby,

We recommend to use the follwoing fields of TsgDXFConverter.HeadVarStruct: TsgHeadVarStruct:

Code: Select all

  PsgHeadVarStruct = ^TsgHeadVarStruct;
  TsgHeadVarStruct = record
    ...
    PointDisplayMode: Integer;// PDMODE 
    PointDisplaySize: Double;// PDSIZE 
Sergey.