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

    Allows you to execute custom code when the mouse pointer moves into a hyperlink area.

    Declaration

    property OnHyperlinkMouseEnter: TdxHyperlinkMouseHoverEvent read; write;

    Remarks

    You can handle OnHyperlinkMouseEnter and OnHyperlinkMouseLeave events to track mouse pointer movement between hyperlinks defined in a formatted message, label, or UI element caption.

    Event Occurrence

    The OnHyperlinkMouseEnter event occurs every time the mouse pointer moves into a hyperlink area.

    Event Parameters

    The following parameters are available within an OnHyperlinkMouseEnter event handler:

    Sender
    Allows you to access the control or UI element that raised the hyperlink mouse move event.
    AArgs
    Allows you to access information about the hyperlink mouse enter event that occurred and allows you to identify the target hyperlink. For example, you can use AArgs.HyperlinkIndex and AArgs.URI properties to identify the hovered hyperlink’s position and target URI.

    Refer to TdxHyperlinkMouseHoverEvent and TdxHyperlinkEventArgs type descriptions for detailed information on all options available within OnHyperlinkMouseEnter and OnHyperlinkMouseLeave event handlers.

    OnHintedTextMouseEnter
    Allows you to execute custom code when the mouse pointer moves over a hint-marked text range.
    OnHintedTextMouseLeave
    Allows you to execute custom code when the mouse pointer leaves a hint-marked text range.
    See Also