Problem with justified text

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

Moderators: SDS, support, admin

Post Reply
marym
Posts: 15
Joined: 22 Jul 2015, 00:03

Problem with justified text

Post by marym » 22 Jul 2015, 00:17

I am having problems creating justified text in a DWG file. It only seems to work properly if the Point is 0,0.

For the code snippet below, I try to create justified text. It only works with the 0,0 version. I believe this is because the code sets the "Geometry Position X" variable, but it should be setting the "Text alignment X" variable as shown in AutoCAD. I am attaching a screen shot of the text properties from the code snippet below.

Code: Select all

// VAlign and HAlign constants to justify text - I found these in the help file
const byte VALIGN_BASELINE			= 0;
const byte VALIGN_BOTTOM			= 1;
const byte VALIGN_MIDDLE			= 2;
const byte VALIGN_TOP				= 3;

const byte HALIGN_LEFT				= 0;
const byte HALIGN_CENTER 			= 1;
const byte HALIGN_RIGHT				= 2;
const byte HALIGN_ALIGNED			= 3;	// if vertical alignment = 0
const byte HALIGN_MIDDLE 			= 4;	// if vertical alignment = 0
const byte HALIGN_FIT				= 5;	// if vertical alignment = 0

	byte hal = HALIGN_CENTER;
	byte val = VALIGN_MIDDLE;

	// test 1
	{
	TsgDXFText *vText = new TsgDXFText();
	vText->HAlign = hal;
	vText->VAlign = val;
	vText->Text = "This is a test, horizontal center, vertical middle, 0,0";
	vText->Point = MakeFPoint(0, 0, 0);

	vText->Height = 1.2;
	vText->Layer = pDrawing->Converter->LayerByName("TEXT2-8");
	vText->Color = clRed;
	if(!PlaceEntity(vText))
		delete vText;

	}

	// test 2
	{
	TsgDXFText *vText = new TsgDXFText();
	vText->HAlign = hal;
	vText->VAlign = val;
	vText->Text = "This is a test, horizontal center, vertical middle, 10, 40";
	vText->Point = MakeFPoint(10, 40, 0);

	vText->Height = 1.2;
	vText->Layer = pDrawing->Converter->LayerByName("TEXT2-8");
	vText->Color = clRed;
	if(!PlaceEntity(vText))
		delete vText;

	}

marym
Posts: 15
Joined: 22 Jul 2015, 00:03

Re: Problem with justified text

Post by marym » 22 Jul 2015, 00:18

screen shots are attached

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

Re: Problem with justified text

Post by support » 27 Jul 2015, 20:05

Hello Mary,

We are currently investigating this issue. Unfortunately, the screen shots weren't attached. You can use the Img button to insert an image into a post.


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

Post Reply