EventActionType - Event action type
The event action type allows altering the behavior of the event action in menus and tool bars.
Enumarators overview
- EAT_command
(5) - Command action
- EAT_toggle
(1) - Toggle action
- EAT_undefined
(0) - Event action type is undefined
Enumerator details
-
EAT_undefined - Event action type is undefined
Event action type is undefined, i.e. it depends on the context. Thus, actions defined as sub actions in a group action will behave different from actions defined as sub actions, simply.
Code: 0
to list -
EAT_toggle - Toggle action
Toggle actions will change the state each time after being pressed. The toggle state becomes visible in an application by button in or out display.
Code: 1
to list -
EAT_command - Command action
Command actions do not change the state after being pressed. Typically, command actions are used for buttons and menu items.
Code: 5
to list