Search found 2 matches

by sevanrulez
12 Apr 2012, 18:31
Forum: CAD .NET
Topic: CadText inside CadHatch
Replies: 2
Views: 15941

Re: CadText inside CadHatch

I found this solution... If cadImageFld.SelectedEntities(0).EntType = EntityType.CurvePolygon Then Return CreateTextOnHatch(cadImageFld.SelectedEntities(0), "TEST", Color.Red) End If Public Function CreateTextOnHatch(ByVal xEnt As CADImport.CADCurvePolygon, ByVal sText As String, ByVal xColor As Sys...
by sevanrulez
12 Apr 2012, 17:45
Forum: CAD .NET
Topic: CadText inside CadHatch
Replies: 2
Views: 15941

CadText inside CadHatch

Greetings from Italy, I have to insert programmatically a CadText in the same coordinates of a selected hatch. I read this topic http://www.cadsofttools.com/forum/viewtopic.php?f=15&t=3029&p=9888&hilit=get+coordinates+entity#p9888 and i tried to adapt the solution but i can't do it... may someone he...