Search found 4 matches
- 13 May 2011, 19:22
- Forum: CAD .NET
- Topic: MultipleSelect on rotate image
- Replies: 1
- Views: 13699
MultipleSelect on rotate image
I have a dxf image that it is was rotate with: this.cadImage.Rotate(Axes.Z, 90); when i use: private bool MultipleSelect() { if (cadImage.SelectionMode == SelectionEntityMode.Enabled) { int l = this.clipRectangle.ClientRectangle.Left; int t = this.clipRectangle.ClientRectangle.Top; DPoint pt1 = this...
- 28 Mar 2011, 21:02
- Forum: CAD .NET
- Topic: Problem with Handle
- Replies: 2
- Views: 15325
Re: Problem with Handle
Thanks. Now it works perfectly
Bye
Bye
- 25 Mar 2011, 20:47
- Forum: CAD .NET
- Topic: Problem with Handle
- Replies: 2
- Views: 15325
Problem with Handle
I copy an entity with this code: CADLine ne = cadImage.SelectedEntities[0]; // I change position of the new line ne.Point = ne.Point.Offest(new DPoint(10,10,0),true); ne.Point1 = ne.Point1.Offest(new DPoint(10,10,0),true); this.cadImage.UseDoubleBuffering = false; this.cadImage.Converter.GetSection(...
HAlign
I'd like to insert a text aligned to the right, I use HAlign=2 but does not work. Can anyone tell me what is wrong? I enclose a clip of my code: ... CADText cText = new CADText(); ... cText.HAlign = 2; cText.Point = new DPoint(Convert.ToDouble(this.tbX2.Text), Convert.ToDouble(this.tbY2.Text), Conve...