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

In This Topic
    AutomaticDelay Property (C1SuperTooltipBase)
    In This Topic
    Gets or sets the automatic delay for the C1SuperTooltipBase.
    Syntax
    'Declaration
     
    Public Property AutomaticDelay As Integer
    public int AutomaticDelay {get; set;}
    Remarks

    The AutomaticDelay property enables you to set a single delay value which is then used to set the values of the AutoPopDelay, InitialDelay, and ReshowDelay properties. Each time the AutomaticDelay property is set, the following values are set by default.

    AutoPopDelay: 10 times the AutomaticDelay property value.

    InitialDelay: Equal to the AutomaticDelay property value.

    ReshowDelay: 1/5 of the AutomaticDelay property value.

    These properties can also be set independently once the AutomaticDelay property has been set. For more information, see the AutoPopDelay, InitialDelay, and ReshowDelay properties. This property is typically used to provide a consistent delay pattern for your C1SuperTooltipBase windows.

    See Also