Skip to main content
A newer version of this page is available. .

TdxAlertWindowManagerHyperlinkClickEvent Type

The procedural type for clicks on a hyperlink in an alert window.

Declaration

TdxAlertWindowManagerHyperlinkClickEvent = procedure(Sender: TObject; const AURI: string; var AHandled: Boolean) of object;

Parameters

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.

Remarks

The Alert Window Manager‘s OnHyperlinkClick event references the TdxAlertWindowManagerHyperlinkClickEvent procedural type.

See Also