Problems with some Dimension properties

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

Moderators: SDS, support, admin

Post Reply
AmperNr1
Posts: 12
Joined: 13 Oct 2010, 15:16

Problems with some Dimension properties

Post by AmperNr1 » 08 Mar 2011, 16:41

Hello.

I have a problem (during reading properties) with some Dimension properties:
ExtLineExt property is always 0.18,
ExtLineOffset property is always 0.0625
TextOffset property is always 0.0625.

Others properties are changing during program run (depend on particular dimension).

Part of code looks as follow:

Code: Select all

TsgDXFDimension *Dimension;
Dimension = dynamic_cast<TsgDXFDimension *>(Entity);
TsgDimensionStyle Style;

Style.Arrow1 = (TsgDimensionArrowType)Dimension->ArrowType1;
Style.Arrow2 = (TsgDimensionArrowType)Dimension->ArrowType2;
Style.ArrowSize = (float)Dimension->ArrowSize;
Style.ExtLineExt = (float)Dimension->ExtLineExt;
Style.ExtLineOffset = (float)Dimension->ExtLineOffset ;
Style.TextHeight = (float)Dimension->TextHeight;
Style.TextOffset = (float)Dimension->TextOffset;
How to get proper properties of Dimension?

Best regards,

Mariusz Hyżorek

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

Re: Problems with some Dimension properties

Post by support » 11 Mar 2011, 14:06

Hello Mariusz.
We can't recreate such issue with AutoCAD test file. Could you please send to support@cadsofttools.com any file that reveal problem with reading dimension properties?

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

Post Reply