InputPanel for WinForms | ComponentOne
C1.Win.5 Assembly / C1.Win.SuperTooltip Namespace / C1SuperTooltipBase Class / AutoPopDelay Property

In This Topic
    AutoPopDelay Property (C1SuperTooltipBase)
    In This Topic
    Gets or sets the period of time (in milliseconds) the tooltip remains visible if the mouse pointer is stationary within a control.
    Syntax
    'Declaration
     
    Public Property AutoPopDelay As Integer
    public int AutoPopDelay {get; set;}
    Remarks

    This property enables you to shorten or lengthen the time that the C1SuperTooltipBase window is displayed when the mouse pointer is over a control. For example, if you display extensive help in a C1SuperTooltip window, you can increase the value of this property to ensure that the user has sufficient time to read the text.

    If you want to have a consistent delay pattern for your C1SuperTooltip windows, you can set the AutomaticDelay property. The AutomaticDelay property sets the AutoPopDelay, ReshowDelay, and InitialDelay properties to initial values based on a single value. Every time the AutomaticDelay property is set, the AutoPopDelay property is set to 10 times the AutomaticDelay property value. Once the AutomaticDelay property is set, you can independently set the AutoPopDelay property, overriding the default value.

    See Also