Specifies an event handler signalled when a button is clicked in TCustomTaskDialog / TTaskDialog.
Source position: dialogs.pp line 550
type TTaskDlgClickEvent = procedure( |
Sender: TObject; |
AModalResult: UITypes.TModalResult; |
var ACanClose: Boolean |
) of object; |
Sender |
|
Task dialog for the event notification. |
AModalResult |
|
Modal result for the clicked button. |
ACanClose |
|
True if the dialog can close. |
TTaskDlgClickEvent is the type used for the OnButtonClicked event handler in TCustomTaskDialog.
|
Event handler signalled for the button clicked when the Task dialog was executed. |