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

BaseLayoutItemOptionsToolTip.IconImmediateToolTip Property

Gets or sets whether the tooltip for the layout item’s icon is displayed immediately or after a delay.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v19.2.dll

Declaration

[XtraSerializableProperty]
[DefaultValue(false)]
public bool IconImmediateToolTip { get; set; }

Property Value

Type Default Description
Boolean **false**

true, if the tooltip is displayed immediately; otherwise, false.

Property Paths

You can access this nested property as listed below:

Show 13 property paths
Object Type Path to IconImmediateToolTip
LayoutViewCard
.OptionsToolTip.IconImmediateToolTip
LayoutViewField
.OptionsToolTip.IconImmediateToolTip
BaseLayoutItem
.OptionsToolTip.IconImmediateToolTip
EmptySpaceItem
.OptionsToolTip.IconImmediateToolTip
LayoutControlGroup
.OptionsToolTip.IconImmediateToolTip
LayoutControlItem
.OptionsToolTip.IconImmediateToolTip
LayoutGroup
.OptionsToolTip.IconImmediateToolTip
LayoutItem
.OptionsToolTip.IconImmediateToolTip
LayoutItemContainer
.OptionsToolTip.IconImmediateToolTip
LayoutRepositoryItem
.OptionsToolTip.IconImmediateToolTip
SplitterItem
.OptionsToolTip.IconImmediateToolTip
TabbedControlGroup
.OptionsToolTip.IconImmediateToolTip
TabbedGroup
.OptionsToolTip.IconImmediateToolTip

Remarks

If the IconImmediateToolTip property is set to true the tooltip is displayed immediately after an end-user hovers over the layout item’s icon with the mouse cursor. If the property is set to false the tooltip is displayed after a delay which is specified by the ToolTipController (see the ToolTipController.InitialDelay and ToolTipController.ReshowDelay properties).

The tooltip text for the layout item’s icon can be specified using the BaseLayoutItemOptionsToolTip.IconToolTip property.

See Also