System.Actions.TActionListState

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

Delphi

TActionListState = (asNormal, asSuspended, asSuspendedEnabled);

C++

enum DECLSPEC_DENUM TActionListState : unsigned char { asNormal, asSuspended, asSuspendedEnabled };

プロパティ

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


説明

アクション リストの状態を表す型を示します。

State は、アクション リスト内のアクションが、ユーザーがクライアント オブジェクトを起動した際に応答するかどうかを示します。

TActionListState は、次の値のいずれかになります:

意味

asNormal

アクションは、クライアント オブジェクトまたはショートカット キーによって実行指示された際、通常の応答をする。

asSuspended

アクション リスト内のアクションは、クライアント オブジェクトが "fire"(実行)を指示しても応答しない。リスト内のすべてのアクションの Enabled プロパティは変更されません。

asSuspendedEnabled

アクション リスト内のアクションは、クライアント オブジェクトが "fire"(実行)を指示しても応答しない。 リスト内のすべてのアクションの Enabled プロパティは、True に設定されます。 ActionBars 設計のために使用されます。


関連項目