Add text in a drawing DWG in 3D

Discuss and ask questions about CAD .NET library.

Moderators: SDS, support, admin

Post Reply
dmvcad
Posts: 10
Joined: 24 Jul 2014, 01:28

Add text in a drawing DWG in 3D

Post by dmvcad » 29 Jul 2014, 22:08

I am testing the DEMO of CADImport .NET, How can I add a label with text in any element/part/entity of a drawing DWG in 3D?

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

Re: Add text in a drawing DWG in 3D

Post by support » 30 Jul 2014, 14:37

Hello,

The code example below shows how to add a text programmatically:

Code: Select all

 
        private void AddText(CADImage cadImage, DPoint basePoint, string textValue)
        {
            if (cadImage == null)
            {
                return;
            }
            else
            {
                if (cadImage.CurrentLayout == null)
                    return;
            }
            CADText text = new CADText();  
            text.Point = basePoint;
            text.Height = 10;
            text.Text = textValue;

            text.Loaded(cadImage.Converter);
            cadImage.Converter.OnCreate(text);
            cadImage.CurrentLayout.AddEntity(text);
            cadImage.GetExtents();
        }
Each new entity should be loaded into CADConverter and added to some layout (usually, to the current layout). After that, you need to redraw the image using CADImage.Draw() method.


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

Post Reply