ActnList.TCustomAction.SecondaryShortCuts
From RAD Studio VCL Reference
Contents |
Delphi Information
From ActnList.pas
property SecondaryShortCuts: TShortCutList read GetSecondaryShortCuts write SetSecondaryShortCuts;
Unit: ActnList
Type: property
Visibility: public
Member Of: TCustomAction
C++ Information
From ActnList.hpp
__property Actnlist::TShortCutList * SecondaryShortCuts = {read=GetSecondaryShortCuts,write=SetSecondaryShortCuts};
Unit: ActnList
Type: property
Visibility: public
Member Of: TCustomAction
Description
Specifies the short cuts (in addition to ShortCut) for triggering clients.
Actions can execute in response to multiple short cut key combinations. SecondaryShortCuts lists all the short cut key combinations (other than the one specified by the ShortCut property) that can trigger the action. This lets you specify shortcuts for clients that do not have a ShortCut property or provide additional, secondary shortcuts.
When the user types one of the key combinations listed in SecondaryShortCuts, the action's Execute method is called.