Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxAlertWindowManagerHyperlinkClickEvent Type

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

#Declaration

Delphi
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