Message 1 of 2
How to use CommandManager using InventorServer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I'm using CommandManager to add sheet in drawing template using InventorApplication object
but unable to add sheet in drawing template using InventorServer
so please tell me how to use CommandManager in InventorServer or what alternate method I can use to add sheet in drawing template using InventorServer
below is the code I'm using for CommandManager :-
(iApp is Inventor.Application)
CommandManager commandManager = iApp.CommandManager;
ControlDefinition controlDefinition = commandManager.ControlDefinitions["DrawingNewSheetCtxCmd"];
controlDefinition.Execute();
Thanks