TdxFormattedTextPropertiesBase.OnShowHyperlinkHint Event
Allows you to modify a hyperlink hint before it appears.
Declaration
property OnShowHyperlinkHint: TdxShowHyperlinkHintEvent read; write;
Remarks
A formatted message, label, or UI element caption can display the target URI in a hint when a user hovers the mouse pointer over a hyperlink.
You can handle the OnShowHyperlinkHint event to change the displayed hint message depending on certain conditions in your application.
Event Occurrence
The OnShowHyperlinkHint event occurs every time a hyperlink hint is about to appear.
Note
Hyperlink hints can appear only if the ShowHyperlinkHint property is set to True (default).
Event Parameters
Sender- Allows you to access the control or UI element that raised the hyperlink hint display event.
AArgs- Allows you to access information about the hyperlink hint display event that occurred. You can use the
AArgs.Hint property to change the hint text.
Refer to TdxShowHyperlinkHintEvent and TdxShowHyperlinkHintEventArgs type descriptions for detailed information on all options available within an OnShowHyperlinkHint event handler.
See Also