[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Specifies an event handler signalled when the timer callback is enabled in a task dialog.
Source position: dialogs.pp line 606
type TTaskDlgTimerEvent = procedure( |
Sender: TObject; |
TickCount: Cardinal; |
var Reset: Boolean |
) of object; |
Sender |
|
Task dialog for the event notification. |
TickCount |
|
Number of ticks (milliseconds) since the timer was started. |
Reset |
|
Set to True to reset the timer. Set to False to continue execution of the timer callback. |
TTaskDlgTimerEvent is an object procedure type which defines an event handler signalled when the timer internal in a task dialog has elapsed. Applications can implement and assign a routine using the signature for the type to the OnTimer event handler in TTaskDialog.
The routine is signalled from the DoOnTimer method in TCustomTaskDialog and is called periodically from the widgetset class when the callback timer is enabled in the task dialog. Arguments passed to the routine indicate the dialog form for the event notification, the number of ticks (milliseconds) since the timer was started, and an updatable value to indicate that the time should be reset.
Added in LCL version 4.0.
|
Event handler signalled when the interval for the timer on the dialog has elapsed. |
Version 4.0 | Generated 2025-05-03 | Home |