Skip to main content

ToolTipControlInfo.Interval Property

Gets or sets the interval that must pass before a tooltip is displayed.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

public int Interval { get; set; }

Property Value

Type Description
Int32

An integer value that specifies the delay, in milliseconds.

Remarks

By default, a tooltip is displayed onscreen after a delay which is determined by the ToolTipController’s settings (see the ToolTipController.InitialDelay and ToolTipController.ReshowDelay properties). The Interval property allows you to override these settings and provide a custom delay. If the Interval property is set to a positive value the delay will be determined by this property, not by the ToolTipController.

If the ToolTipControlInfo.ImmediateToolTip property is set to true the Interval property has no effect.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Interval property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also