Search found 6 matches

by imilchman
31 Aug 2017, 18:53
Forum: CAD .NET
Topic: Changes to the entities
Replies: 1
Views: 14928

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...
by imilchman
29 Aug 2017, 21:20
Forum: CAD .NET
Topic: Polyline points
Replies: 5
Views: 26644

Re: Polyline points

Yes. Is it possible?
by imilchman
29 Aug 2017, 20:41
Forum: CAD .NET
Topic: Polyline points
Replies: 5
Views: 26644

Re: Polyline points

No, I meant vertexes by themselves. I have to make un-selected polyline look like selected one.
by imilchman
29 Aug 2017, 20:07
Forum: CAD .NET
Topic: Polyline points
Replies: 5
Views: 26644

Polyline points

Hello,
Is it possible to change size of each point in polyline(make it larger)?
Thank you!
by imilchman
03 Aug 2017, 19:53
Forum: CAD .NET
Topic: Unable to see newly created layer while clicking Show Layers
Replies: 2
Views: 17288

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...