InputPanel for WinForms | ComponentOne
C1.Win.C1InputPanel.4.5.2 Assembly / C1.Win.C1InputPanel Namespace / C1InputPanel Class / ToolTipLinkClicked Event

In This Topic
    ToolTipLinkClicked Event (C1InputPanel)
    In This Topic
    Event that fires when the user clicks a hyperlink within a tooltip.
    Syntax
    'Declaration
     
    Public Event ToolTipLinkClicked As ToolTipLinkClickedEventHandler
    public event ToolTipLinkClickedEventHandler 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