Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
it's possible to disable a group of UI Elements (CommandTypes) with the following line:
ThisApplication.ActiveDocument.DisabledCommandTypes = CommandTypesEnum.kShapeEditCmdType;
How do I disable multiple CommandTypes? e.g.:
DisabledCommandTypesList = new List<CommandTypesEnum> {CommandTypesEnum.kShapeEditCmdType, CommandTypesEnum.kQueryOnlyCmdType }
For my API I want to wait for a User Input where the user has to select multiple faces but shouldn't be allowed to click on a UI element. Is there a possibility to implement this?
Thanks!
Solved! Go to Solution.