Authentic.UICommands
Declaration: UICommands as AuthenticCommands
Description
Gets a collection of all available toolbar commands (with description).
For these commands, buttons can be placed on different toolbars.
Read only.
Example
Get all available commands, command-groups, descriptions, and show them in a message box
dim str
for each UICommand in objPlugin.UICommands
str = str & UICommand.CommandID & " | " & UICommand.Group & " | " & UICommand.ShortDescription & chr(13)
next
msgbox str