System.Actions.TCustomShortCutList.IndexOfShortCut
Delphi
function IndexOfShortCut(const ShortCut: System.Classes.TShortCut): Integer; overload;
function IndexOfShortCut(const ShortCut: string): Integer; overload;
C++
int __fastcall IndexOfShortCut(const System::Classes::TShortCut ShortCut)/* overload */;
int __fastcall IndexOfShortCut(const System::UnicodeString ShortCut)/* overload */;
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.Actions.pas System.Actions.hpp |
System.Actions | TCustomShortCutList |
説明
TCustomShortCutList リストにおけるショートカットの位置を返します。
IndexOfShortCut を呼び出すと、TCustomShortCutList リストでショートカットを検索します。 IndexOfShortCut は、リストにおいて、ShortCut が最初に見つかった位置を返し、ここでの 0 は、最初のショートカットの位置を、1 は 2 番目のショートカットの位置、...となります。 ショートカットがリスト内にない場合、IndexOfShortCut は –1 を返します。
ShortCut パラメータのタイプにより、IndexOfShortCut は、System.Actions.TContainedAction.ShortCut 値または文字列表現で指定されたショートカットを、検索します。