Skip to main content

ToolTipControlInfo.ImmediateToolTip Property

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

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v23.2.dll

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

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.

See Also