System.Actions.TContainedAction.SecondaryShortCuts

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property SecondaryShortCuts: TCustomShortCutList read GetSecondaryShortCuts

C++

__property TCustomShortCutList* SecondaryShortCuts = {read=GetSecondaryShortCuts, write=SetSecondaryShortCuts, stored=IsSecondaryShortCutsStored};

Properties

Type Visibility Source Unit Parent
property public
System.Actions.pas
System.Actions.hpp
System.Actions TContainedAction

Description

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