I have a WinForm application that opens AutoCAD drawings in the eDrawings Control. There is an interface for this, with public methods and properties and enums.
Here is the dilemma: There is a built in Pan
option in the eDrawings ActiveX Control (which I'm using in my WinForm), but, you have to press down the scroll button on your mouse to pan, or you have to right click on the drawing, select View
and then Pan
. Some users don't have a scroll wheel on their mouse, so they have to right click -> View -> Pan
for every single drawing, each time they open it. And they don't like it at all (the default goes back to Select
when the new drawings are opened). So, my task is to somehow create a button or checkbox or something that can select the Pan
option when the button/checkbox is clicked/checked, so the user can have Pan set as the default when switching between drawings without having to manually select the Pan
option every single time.
I currently have just used the defaults that came with the eDrawings control, and haven't had to use the interface, but now when I have this task to create an option for the default to be set to Pan, I'm not sure how else to do it, other than with the interface - so my question here, is: Does anyone know how I can implement this option from the interface in my WinForm project?