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

Document.Tooltip Property

Gets or sets a regular tooltip’s content.

Namespace: DevExpress.XtraBars.Docking2010.Views.Tabbed

Assembly: DevExpress.XtraBars.v19.2.dll

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 Tooltips, for more information.

See Also