Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

Document.Tooltip Property

Gets or sets a regular tooltip’s content.

Namespace: DevExpress.XtraBars.Docking2010.Views.Tabbed

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(null)]
public virtual string Tooltip { get; set; }

#Property Value

Type Default Description
String null

A string which specifies the text content of a regular tooltip.

#Remarks

Document objects support regular tooltips and SuperToolTips. Use the Tooltip property to specify a regular tooltip’s text content. The tooltip’s title and icon can be specified via the Document.TooltipTitle and Document.TooltipIconType properties. The following image shows a sample regular tooltip:

DocumentManager Tooltip

The Document.SuperTip property allows you to assign a SuperToolTip to a Document.

To temporarily disable tooltips, set the DocumentManager.ShowToolTips property to false.

The DocumentManager.ToolTipController property determines the ToolTipController which manages tooltips for Documents. The type of tooltips displayed by Documents is determined by the ToolTipController.ToolTipType property. See Hints and Tooltips, for more information.

See Also