Search found 6 matches
- 31 Aug 2017, 18:53
- Forum: CAD .NET
- Topic: Changes to the entities
- Replies: 1
- Views: 14965
Changes to the entities
Hello, I need to track changes to the entities: programming and via mouse/keyboard. As I understood from one of the posts I have to use CADEntity.OnDraw() event. But I could not find how to do it anywhere. Any chance you could provide an example how to do it? Basically I am trying to implement custo...
- 29 Aug 2017, 21:20
- Forum: CAD .NET
- Topic: Polyline points
- Replies: 5
- Views: 26689
Re: Polyline points
Yes. Is it possible?
- 29 Aug 2017, 20:41
- Forum: CAD .NET
- Topic: Polyline points
- Replies: 5
- Views: 26689
Re: Polyline points
No, I meant vertexes by themselves. I have to make un-selected polyline look like selected one.
- 29 Aug 2017, 20:07
- Forum: CAD .NET
- Topic: Polyline points
- Replies: 5
- Views: 26689
Polyline points
Hello,
Is it possible to change size of each point in polyline(make it larger)?
Thank you!
Is it possible to change size of each point in polyline(make it larger)?
Thank you!
- 03 Aug 2017, 22:27
- Forum: CAD .NET
- Topic: Unable to see newly created layer while clicking Show Layers
- Replies: 2
- Views: 17321
- 03 Aug 2017, 19:53
- Forum: CAD .NET
- Topic: Unable to see newly created layer while clicking Show Layers
- Replies: 2
- Views: 17321
Unable to see newly created layer while clicking Show Layers
Hello, I am trying to add layer to CADPictureBox. cadImage = this.CADPictureBox.Image; CADLayer l = new CADLayer() { Name = "Test", Visibility = true }; l.Loaded(this.cadImage.Converter); this.cadImage.Converter.Layers.Add(l); cadImage.Converter.OnCreate(l); CADLine xLine = new CADLine(); xLine.Poin...