Vcl.ActnList.TAction.SecondaryShortCuts

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property SecondaryShortCuts: TCustomShortCutList read GetSecondaryShortCuts write SetSecondaryShortCuts stored IsSecondaryShortCutsStored;

C++

__property SecondaryShortCuts;

Properties

Type Visibility Source Unit Parent
property published
Vcl.ActnList.pas
Vcl.ActnList.hpp
Vcl.ActnList TAction

Description

Stores shortcuts (in addition to ShortCut) for triggering the action.

Vcl.ActnList.TAction.SecondaryShortCuts inherits from System.Actions.TContainedAction.SecondaryShortCuts. All content below this line refers to System.Actions.TContainedAction.SecondaryShortCuts.

Stores shortcuts (in addition to ShortCut) for triggering the action.

Actions can execute in response to multiple shortcut key combinations. SecondaryShortCuts lists all the shortcut key combinations (other than the one specified by the ShortCut property) that can trigger the action. This lets you provide additional, secondary shortcuts.

When the user types one of the key combinations listed in SecondaryShortCuts, the action's Execute method is called.

See Also