'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.
Property | Description |
---|---|
Button | Gets the button that was clicked on the link. |
HRef | Gets the value of the link's HREF attribute. |
Target | 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