TBasicAction.OnExecute
Event triggered when the action executes.
Declaration
Source position: classesh.inc line 2197
public Property
OnExecute : TNotifyEvent;
Description
OnExecute is the event triggered when the action is activated (executed). The event is triggered e.g. when the user clicks e.g. on a menu item or a button associated to the action. The application programmer should provide a OnExecute event handler to execute whatever code is necessary when the button is pressed or the menu item is chosen.
Note that assigning an OnExecute handler will result in the Execute method returning a True value. Predefined actions (such as dataset actions) will check the result of Execute and will not perform their normal task if the OnExecute handler was called.
See also
Name | Description |
---|---|
Execute | Triggers the OnExecute event |
OnUpdate | Event triggered when the application is idle. |
TNotifyEvent | Standard event handler type. |