vcl-dxalertwindow-3e7c0778.md
The procedural type for clicks on a hyperlink in an alert window.
TdxAlertWindowManagerHyperlinkClickEvent = procedure(Sender: TObject; const AURI: string; var AHandled: Boolean) of object;
| Name | Type | Description |
|---|---|---|
| Sender | TObject |
The alert window manager that raised the hyperlink click event. Cast the Sender parameter value to the TdxAlertWindowManager.
| | AURI | string |
The universal resource identifier (URI) of the clicked hyperlink’s target. You can use this parameter to implement different hyperlink activation behavior depending on the target URI type.
| | AHandled | Boolean |
If True, the built-in hyperlink activation routine is disabled. If False, a click on a hyperlink displays its target (AURI) in the default application associated with the target URI’s type.
|
The Alert Window Manager‘s OnHyperlinkClick event references the TdxAlertWindowManagerHyperlinkClickEvent procedural type.
See Also