System.Actions.TContainedAction.SecondaryShortCuts

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

property SecondaryShortCuts: TCustomShortCutList read GetSecondaryShortCuts  write SetSecondaryShortCuts stored IsSecondaryShortCutsStored;

C++

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

プロパティ

種類 可視性 ソース ユニット
property public
System.Actions.pas
System.Actions.hpp
System.Actions TContainedAction

説明

アクションを起動するためのショートカットを保持します(ShortCut に加えて)。

アクションは、複数のショートカット キーの組み合わせに応じて実行させることができます。SecondaryShortCuts は、アクションのトリガとなれるショートカット キーのすべての組み合わせのリストです(ShortCut プロパティで指定されるもの以外)。これにより、補足的な、2 つめのショートカットを提供することができます。

ユーザーが SecondaryShortCuts にリストされているキーの組み合わせのいずれかを入力すると、そのアクションの Execute メソッドが呼び出されます。

関連項目