CADEditorControl Help

Discuss and ask questions about CAD .NET library.

Moderators: SDS, support, admin

Post Reply
bobpenas
Posts: 4
Joined: 14 Jan 2016, 01:20

CADEditorControl Help

Post by bobpenas » 17 Jan 2016, 00:07

Hello
I am using the CADEditorControl to load a DXF file and would like help with the following:

1) Disable the user's ability to select entities on the screen with the mouse. In a sense make the CAD drawing read only.
2) After adding a Line or Arc programmatically, how can I do a Zoom All?

Thanks,
Bob

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: CADEditorControl Help

Post by support » 18 Jan 2016, 10:25

Hello Bob,

1) To make a CAD drawing loaded in the CADEditorControl read-only, use the following code:

Code: Select all

cadEditorControl.Image.SelectionMode = CADImport.SelectionEntityMode.Disabled;
2) There are two ways to zoom to the all entities in CADEditorControl:

- Using a Fit drawing to window button on the CADEditorControl toolbar;
- Programmatically, using a CADEditorControl.CalculateNewSizeImage method.


Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

bobpenas
Posts: 4
Joined: 14 Jan 2016, 01:20

Re: CADEditorControl Help

Post by bobpenas » 18 Jan 2016, 18:09

Hi,
1) Works good.
2) The CADEditorControl.CalculateNewSizeImage method only zooms in on the original DXF drawing and does not include any lines or arcs that were added. Here is how I am adding an arc to the drawing. Should I be doing something different?

private void button3_Click(object sender, EventArgs e)
{
CADArc vArc = new CADArc();
vArc.StartAngle = 60;
vArc.EndAngle = 210;
vArc.Radius = 50;
vArc.Point = new DPoint(110, 160, 0);
vArc.Color = Color.Green;
if (cadEditorControl1.Image != null)
{
cadEditorControl1.Image.Converter.Loads(vArc);
cadEditorControl1.Image.Layouts[0].AddEntity(vArc);
cadEditorControl1.Refresh();
}
}

Thanks,
Bob

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: CADEditorControl Help

Post by support » 18 Jan 2016, 22:54

bobpenas wrote:The CADEditorControl.CalculateNewSizeImage method only zooms in on the original DXF drawing and does not include any lines or arcs that were added.
This issue has been solved, we can provide you with an updated CADImport.dll build. Please send a request to the Technical Support e-mail to receive the update.


Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Post Reply