CADText it does not show the correct text

Discuss and ask questions about CAD .NET library.

Moderators: SDS, support, admin

Post Reply
coo5hda
Posts: 11
Joined: 26 Oct 2018, 21:58

CADText it does not show the correct text

Post by coo5hda » 23 Jan 2019, 19:55

Hello I have a problem with a CADText, when entering it inside the image it does not show a recognized text, it shows a set of symbols instead of the text, someone can help me know what it can be.


CODE :

Code: Select all

CADText text = new CADText();
	text.Point = point;
	text.Height = 5.0;
	text.Rotation = 0.0f;
	text.Text = "IP Recording";
	text.LineWeight = 0.1;
	text.Layer = editor.Image.Converter.LayerByName(IP_RECORDING_LAYER) as CADLayer;
	editor.Image.Converter.Loads(text);
	editor.Image.CurrentLayout.Entities.Add(text);
	editor.Invalidate();
OUTPUT :
Attachments
Screenshot
Screenshot
Output.JPG (35.21 KiB) Viewed 8715 times

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

Re: CADText it does not show the correct text

Post by support » 24 Jan 2019, 21:57

Hello,

Could you please save the drawing containing this CADText to DXF and attach the output .dxf file to your reply?

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

Post Reply