windowsforms-devexpress-dot-xtrabars-dot-navigation-dot-tilenavpane-6395934d.md
Gets or sets the mode that specifies for which navigation elements tooltips are shown.
Namespace : DevExpress.XtraBars.Navigation
Assembly : DevExpress.XtraBars.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DefaultValue(ToolTipShowMode.AllElements)]
[DXCategory("Behavior")]
public ToolTipShowMode ToolTipShowMode { get; set; }
<DefaultValue(ToolTipShowMode.AllElements)>
<DXCategory("Behavior")>
Public Property ToolTipShowMode As ToolTipShowMode
| Type | Default | Description |
|---|---|---|
| DevExpress.XtraBars.Navigation.ToolTipShowMode | AllElements |
A ToolTipShowMode enumeration value that specifies for which elements tooltips are shown.
|
The ToolTipShowMode property allows you to specify for which navigation elements tooltips are shown. The ToolTipShowMode enumeration provides the following values:
| Value | Description |
|---|---|
| AllElements | Tooltips are shown for all elements. |
| Tiles | Tooltips are only shown for tiles in drop-down tile bars. |
| NavBarItems | Tooltips are only shown for items in the nav bar (buttons and custom categories). |
| None | Tooltips are not shown. |
To specify a tooltip for an element, use the NavElement.SuperTip property.
See Also