Ribbon for WinForms | ComponentOne
C1.Win.Ribbon Namespace / C1Ribbon Class / ToolTipLinkClicked Event

In This Topic
    ToolTipLinkClicked Event (C1Ribbon)
    In This Topic
    Event that fires when the user clicks a hyperlink within a tooltip.
    Syntax
    'Declaration
     
    
    Public Event ToolTipLinkClicked As EventHandler(Of ToolTipLinkClickedEventArgs)
    public event EventHandler<ToolTipLinkClickedEventArgs> ToolTipLinkClicked
    Event Data

    The event handler receives an argument of type ToolTipLinkClickedEventArgs containing data related to this event. The following ToolTipLinkClickedEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the button that was clicked on the link.  
    Gets the value of the link's HREF attribute.  
    Gets the value of the link's TARGET attribute.  
    Remarks

    By default, tooltips are invisible to the mouse and therefore cannot be clicked. You must set the ToolTipSettings.HitTestVisible property is to true in order to make the tooltip visible to the mouse (and clickable).

    Hyperlinks are created using "A" tags in the HTML source text. When hyperlinks are clicked, the ToolTipLinkClicked event fires and provides information about the link. The event handler can then take appropriate action.

    See Also