TsgCADIterate
Unit: DXFConv
Description
TsgCADIterate
is used as the type for the TsgDXFConverter.Iterate
method parameter.
Value | Description |
---|---|
Matrix | Specifies the coordinate transformation matrix. |
Insert | Specifies the current block reference or nil. |
Color | Specifies the current block color or clNone. |
XScale | Specifies a text width scaling. |
YScale | Specifies a text height scaling. |
Angle | Specifies a text rotation angle. |
Additional | Specifies an user-defined value. |
Syntax
type
PsgCADIterate = ^TsgCADIterate;
TsgCADIterate = record
Matrix: TFMatrix;
Insert: TsgDXFInsert;
Color: TColor;
XScale: Single;
YScale: Single;
Angle: Single;
Additional: Integer;
end;