SW isometirc View

Discuss and ask questions about CADViewX (Lite and Pro versions).

Moderators: SDS, support, admin

Post Reply
jprisbe
Posts: 3
Joined: 18 Oct 2007, 16:55

SW isometirc View

Post by jprisbe » 18 Oct 2007, 18:04

How do I programatically select "SW Isometric" view.
I have tried getting to it via:
CADViewLib.sgToolButton tbtnSWIsometric;
tbtnSWIsometric = axCADViewX1.ToolBars.get_Items("CAD Image").get_Items("3D Orbit");

But cannot get to it.

Thanks

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

Post by support » 18 Oct 2007, 18:34

Hello!

Please try the following code:

Code: Select all

axCADViewX1.get_Actions().get_Item("SW Isometric").Execute();
Sergey.

Please post questions to the forum or write to support@cadsofttools.com

jprisbe
Posts: 3
Joined: 18 Oct 2007, 16:55

Post by jprisbe » 18 Oct 2007, 19:13

I get this error when trying your suggestion:

AxCADViewLib.AxCADViewX.Actions.get: cannot explicitly call operator or accessor

jprisbe
Posts: 3
Joined: 18 Oct 2007, 16:55

Post by jprisbe » 18 Oct 2007, 20:23

OK. I got it to work. It was...

axCADViewX1.Actions.get_Item("SW Isometric").Execute();

Thanks,

Post Reply