Initializes a new instance of the CADText object.
Namespace:
CADImport
Assembly: CADImport (in CADImport.dll)
Assembly: CADImport (in CADImport.dll)
<p>Creating a new CADText object example:</p>
<p>
[C#]
</p>
CreateNewImage(); Point p1 = new Point(100, 100); CADText text = new CADText(); text.FontName = "Txt.shx"; text.Color = CADConst.clNone; text.Point = GetRealPoint(p1.X, p1.Y); text.Height = 5.0; text.Rotation = 0.0f; text.Text = "Any text"; text.LineWeight = 0.1; text.Layer = cadImage.Converter.Layers[0] as CADLayer; cadImage.Converter.OnCreate(text); text.Handle = text.GetHashCode(); text.KeyEnt = text.Handle.ToString(); cadImage.Converter.OnCreate(text); cadImage.CurrentLayout.Entities.Add(text); EditorCADPictureBox.Invalidate();
Windows NT 4.0, Windows 98, Windows XP, Windows Server 2003, Windows Vista; Windows Server 2008 R2, Windows 7, WIndows10
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.