Skip to main content
All docs
V26.1
  • TdxFormattedTextPropertiesBase.OnHintedTextMouseLeave Event

    Allows you to execute custom code when the mouse pointer leaves a hint-marked text range.

    Declaration

    property OnHintedTextMouseLeave: 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 OnHintedTextMouseLeave event occurs every time the mouse pointer leaves a hint-marked text range.

    Event Parameters

    The following parameters are available within an OnHintedTextMouseLeave event handler:

    Sender
    Allows you to access the control or UI element that raised the hint-marked text range mouse leave event.
    AArgs
    Allows you to access information about the hint-marked text mouse leave event that occurred and allows you to identify the target text range. For example, you can use AArgs.HintIndex and AArgs.Hint properties to identify the hovered range’s position and its defined hint text.

    Refer to TdxHintedTextMouseHoverEvent and TdxHintedTextEventArgs type descriptions for detailed information on options available within OnHintedTextMouseEnter and OnHintedTextMouseLeave event handlers.

    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