TsgDXFText.HAlign : Change the vertical position ?
Moderators: SDS, support, admin
TsgDXFText.HAlign : Change the vertical position ?
Hello
i must draw a center text ( Horizontal ). I use TsgDXFText and your CADExportDemo exemple code:
i add this line, in your code:
function TForm1.AddText1: TsgDXFText;
begin
Result := TsgDXFText.Create;
Result.Text := 'Text';
Result.Point := MakeFPoint(10, 280, 0);
Result.Height := 10;
Result.SetColor(clTeal);
Result.HAlign := 1; -----------------> MY NEW LINE
Result.Layer := FCADFile.Converter.LayerByName(cnstLayerName);
if not AddEntityToLayout(Result) then
begin
Result.Free;
Result := nil;
end;
end;
Problem: The text is not center, and this Y position moved ( ?? )
What is the solution ?
Thansk
Pascal EY.
i must draw a center text ( Horizontal ). I use TsgDXFText and your CADExportDemo exemple code:
i add this line, in your code:
function TForm1.AddText1: TsgDXFText;
begin
Result := TsgDXFText.Create;
Result.Text := 'Text';
Result.Point := MakeFPoint(10, 280, 0);
Result.Height := 10;
Result.SetColor(clTeal);
Result.HAlign := 1; -----------------> MY NEW LINE
Result.Layer := FCADFile.Converter.LayerByName(cnstLayerName);
if not AddEntityToLayout(Result) then
begin
Result.Free;
Result := nil;
end;
end;
Problem: The text is not center, and this Y position moved ( ?? )
What is the solution ?
Thansk
Pascal EY.
Re: TsgDXFText.HAlign : Change the vertical position ?
Hello Pascal.
TsgDXFText.HAlign property specifies the "Horizontal text justification type" (correspond to group code 72 of DXF specification). This mean text orientation relative to "second alignment point" (AutoCAD) or TsgDXFText.Point1 (VCL). This point is null, the text justified around (0, 0) point. Please specify this point to receive correct result.
Alexander.
TsgDXFText.HAlign property specifies the "Horizontal text justification type" (correspond to group code 72 of DXF specification). This mean text orientation relative to "second alignment point" (AutoCAD) or TsgDXFText.Point1 (VCL). This point is null, the text justified around (0, 0) point. Please specify this point to receive correct result.
Alexander.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support