TdxFormattedTextPropertiesBase.OnHintedTextMouseEnter Event
Allows you to execute custom code when the mouse pointer moves over a hint-marked text range.
Declaration
property OnHintedTextMouseEnter: TdxHintedTextMouseHoverEvent read; write;
Remarks
You can handle OnHintedTextMouseEnter and OnHintedTextMouseLeave events to track mouse pointer movement between hint-marked text ranges defined in a formatted message, label, or UI element caption.
Event Occurrence
The OnHintedTextMouseEnter event occurs every time the mouse pointer moves over a hint-marked text range.
Event Parameters
The following parameters are available in an OnHintedTextMouseEnter event handler:
Sender- Provides access to the control or UI element that raised the event when the mouse pointer entered a hint-marked text range.
AArgs- Contains information about the hint-marked text range mouse-enter event and identifies the target hint-marked text range. For example, use the
AArgs.HintIndex andAArgs.Hint properties to identify the target text range position and its defined hint text.
Refer to TdxHintedTextMouseHoverEvent and TdxHintedTextEventArgs type descriptions for detailed information on all options available within OnHintedTextMouseEnter and OnHintedTextMouseLeave event handlers.
Related Hyperlink Events
- OnHyperlinkMouseEnter
- Allows you to execute custom code when the mouse pointer moves into a hyperlink area.
- OnHyperlinkMouseLeave
- Allows you to execute custom code when the mouse pointer leaves a hyperlink area.
See Also