TreeView for WinForms | ComponentOne
C1.Win.SuperTooltip Namespace / C1SuperTooltipBase Class / HitTestVisible Property

In This Topic
    HitTestVisible Property (C1SuperTooltipBase)
    In This Topic
    Gets or sets a value that determines whether the tooltip can be clicked.
    Syntax
    'Declaration
     
    
    <DefaultValueAttribute(False)>
    <C1DescriptionAttribute("ST.HitTestVisible", "Gets or sets a value that determines whether the tooltip can be clicked.")>
    <C1CategoryAttribute("Behavior")>
    Public Property HitTestVisible As Boolean
    [DefaultValue(false)]
    [C1Description("ST.HitTestVisible", "Gets or sets a value that determines whether the tooltip can be clicked.")]
    [C1Category("Behavior")]
    public bool HitTestVisible {get; set;}
    Remarks

    This property is set to false by default, so the tooltip is invisible to the mouse. All mouse events are passed on to the control under the tooltip.

    Set this property to true if you want to add clickable areas to the tooltip, such as hyperlinks. In this case, the tooltip becomes visible to the mouse handles the mouse events itself instead of passing them to the control under the tooltip.

    See Also