System.Classes.TBasicAction.OnUpdate
Delphi
property OnUpdate: TNotifyEvent read FOnUpdate write FOnUpdate;
C++
__property TNotifyEvent OnUpdate = {read=FOnUpdate, write=FOnUpdate};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
event | public | System.Classes.pas System.Classes.hpp |
System.Classes | TBasicAction |
Description
Occurs when the application is idle or when the action list updates.
Write an OnUpdate event handler to execute centralized code while an application is idle. For example, actions may want to update enabling and disabling, or checking and unchecking of client targets.
See Also
Code Examples