Skip to main content
A newer version of this page is available. .

ToolTipControlInfo.ImmediateToolTip Property

Gets or sets whether a tooltip will be displayed immediately or after a delay.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v18.2.dll

Declaration

public bool ImmediateToolTip { get; set; }

Property Value

Type Description
Boolean

A Boolean value that specifies whether a tooltip will be displayed immediately after an event handler call.

Remarks

If the ImmediateToolTip property is set to true a tooltip will be displayed immediately after an event handler call.

If the property is set to false the tooltip will be displayed after a delay which is specified by the ToolTipController (see the ToolTipController.InitialDelay and ToolTipController.ReshowDelay properties). It’s also possible to override the ToolTipController’s settings and specify a custom delay via the ToolTipControlInfo.Interval property.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ImmediateToolTip 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