Search found 11 matches
- 30 Jul 2014, 15:11
- Forum: CADEditorX
- Topic: How to customize CADEditorX?
- Replies: 7
- Views: 51183
Re: How to customize CADEditorX?
I will need a button called "Scan" and an event HandleScan(object sender, object data).
- 29 Jul 2014, 15:57
- Forum: CADEditorX
- Topic: How to customize CADEditorX?
- Replies: 7
- Views: 51183
How to customize CADEditorX?
I don't see how to customize/interact with CADEditorX programmatically under VisualStudio 2012. For example,
1) how do I add a button and create an associated event?
2) How do I iterate through all entities?
3) How do I view attributes of a block?
1) how do I add a button and create an associated event?
2) How do I iterate through all entities?
3) How do I view attributes of a block?
- 29 Jul 2014, 15:53
- Forum: CAD .NET
- Topic: Where to ask questions about CADEditorX
- Replies: 1
- Views: 14632
Where to ask questions about CADEditorX
Where is the most appropriate place to ask questions about CADEditorX? Is under CADImport.NET (right here) acceptable?
- 27 Jul 2014, 00:03
- Forum: CADEditorX
- Topic: Totally Lost on CADEditorX
- Replies: 1
- Views: 23519
Totally Lost on CADEditorX
I'm asking this question here because I don't see a Forum for CADEditorX. I am totally lost on how to use this product under C# .NET. The Help (chm) talks about various visual elements, including a View, Editor, Ribbon, etc. but after installing, I don't see any visual components I can drag and drop...
- 25 Jul 2014, 17:58
- Forum: CAD .NET
- Topic: How to convert dwg to xaml?
- Replies: 3
- Views: 21957
Re: How to convert dwg to xaml?
What does this mean "XAML export is implemented, but is not enabled"? Do you mean it is not available in current versions but will be in a future version? Or do you mean it is available in a full version but not a trial version? I just don't know what you mean by "not enabled?"
- 25 Jul 2014, 01:01
- Forum: CAD .NET
- Topic: How to convert dwg to xaml?
- Replies: 3
- Views: 21957
How to convert dwg to xaml?
I need our .NET app to convert a dwg file to xaml, for use with WPF. If this is not possible, dwg conversion to SVG would do since I am told SVG can be converted to Xaml.
- 21 Jul 2014, 20:48
- Forum: CAD .NET
- Topic: Best way to know when a user has drawn a line
- Replies: 1
- Views: 13375
Best way to know when a user has drawn a line
I need to programmatically detect when a user has just finished drawing a line so that I can record that line's start and end points. Of course MouseUp is a possibility, but I see that Undo/Redo is recording this action, so I wondered if the entire line drawing action is already being captured so th...
- 17 Jul 2014, 14:45
- Forum: CAD .NET
- Topic: Programmatically pan drawing to center
- Replies: 1
- Views: 13137
Programmatically pan drawing to center
How to programmatically pan the drawing to bring a given point to the center of the user's view?
- 17 Jul 2014, 14:44
- Forum: CAD .NET
- Topic: How to programatically draw a line and rectangle
- Replies: 1
- Views: 13553
How to programatically draw a line and rectangle
How to programmatically draw a line from one point to another?
How to programmatically draw a rectangle whose center is at a particular point?
How to programmatically draw a rectangle whose center is at a particular point?
- 17 Jul 2014, 14:39
- Forum: CAD .NET
- Topic: How to iterate through all entities
- Replies: 3
- Views: 19117
Re: How to iterate through all entities
Thank you, and useful, but my question was how to iterate all entities of a particular layer. So let me rephrase: Given a particular layer of drawing, how do you iterate through all entities of that layer.
- 17 Jul 2014, 01:39
- Forum: CAD .NET
- Topic: How to iterate through all entities
- Replies: 3
- Views: 19117
How to iterate through all entities
I need to go through every thing that exists on the drawing and examine the properties of each. I guess the things on the drawing are called "entities"? If someone could show me how to do this layer by layer that would be great.