System.Actions.TActionListState

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TActionListState = (asNormal, asSuspended, asSuspendedEnabled);

C++

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

Properties

Type Visibility Source Unit Parent
enum public
System.Actions.pas
System.Actions.hpp
System.Actions System.Actions

Description

Specifies the type for the state of an action list.

State indicates whether the actions in the action list respond when the user triggers a client object.

TActionListState can have one of the following values.

Value Meaning

asNormal

Actions perform their normal response when triggered by client objects or shortcut keys.

asSuspended

The actions in the action list do not respond when client objects tell them to "fire". The Enabled property for all actions in the list is unchanged.

asSuspendedEnabled

The actions in the action list do not respond when client objects tell them to "fire". The Enabled property for all actions in the list is set to True. Used for designing ActionBars.


See Also