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

In This Topic
    ReshowDelay Property (C1SuperTooltipBase)
    In This Topic
    Gets or sets the length of time that must transpire before subsequent C1SuperTooltipBase windows appear as the mouse pointer moves from one control to another.
    Syntax
    'Declaration
     
    Public Property ReshowDelay As Integer
    public int ReshowDelay {get; set;}
    Remarks

    This property enables you to shorten or lengthen the time that the C1SuperTooltip waits before displaying a tooltip window after a previous tooltip window is displayed. The first time a tooltip window is displayed the value of the InitialDelay property is used to determine the delay to apply before initially showing the tooltip window. When a tooltip window is currently being displayed and the user moves the cursor to another control that displays a tooltip window, the value of the ReshowDelay property is used before showing the tooltip for the new control. The tooltip window from the previous control must still be displayed in order for the delay specified in the ReshowDelay property to be used; otherwise the InitialDelay property value is used.

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

    See Also