CommandOverride.zip
4 KB
Every action that can be triggered by the user via menu, toolbar, or shortcut are implementations of the _3S.CoDeSys.Core.Commands.ICommand interface. Using Automation Platform, you can create new implementations of commands within your own plug-ins. However, sometimes it is desired to override the behavior of an already existing command instead of creating a new one. This article shows how to solve this task.
Currently, there are four derived interfaces of ICommand (implementations never implement ICommand directly, but one of the sub-interfaces in order to define the general behavior of the command):
ICommand | ICustomizedCommand |
IStandardCommand | ICustomizedStandardCommand |
IToggleCommand | ICustomizedToggleCommand |
IListCommand | ICustomizedListCommand |
ITextCommand | ICustomizedTextCommand |
ICommand method/property | ICustomizedCommand method |
AddedToUI() | AddedToUI(ICommand originalCommand) |
RemovedFromUI() | RemovedFromUI(ICommand originalCommand) |
Category { get; } | GetCategory(ICommand originalCommand) |
Name { get; } | GetName(ICommand originalCommand) |
Description { get; } | GetDescription(ICommand originalCommand) |
ToolTipText { get; } | GetToolTipText(ICommand originalCommand) |
SmallIcon { get; } | GetSmallIcon(ICommand originalCommand) |
LargeIcon { get; } | GetLargeIcon(ICommand originalCommand) |
Enabled { get; } | GetEnabled(ICommand originalCommand) |
IsVisible(bool bContextMenu) | IsVisible(bool bContextMenu, ICommand originalCommand) |
BatchCommand { get; } | GetBatchCommand(ICommand originalCommand) |
ExecuteBatch(string[] arguments) | ExecuteBatch(string[] arguments, ICommand originalCommand) |
Each method and property of the command interface has got a corresponding method for customization, which has got an extra argument where a reference to the original implementation is passed to your implementation. That means that you are not only able to influence the execution of the command, but any other aspect like name, icons, etc. as well! For all aspects which you do not want to change, simply call the corresponding method on the originalCommand parameter.
The ICustomizedCommand interface has got one additional property OriginalCommandGuid which returns the type GUID of that command that should be overwritten.
The sample implementation overrides the File::Save command in two aspects:
4 KB