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

Document.TooltipTitle Property

Gets or sets a regular tooltip’s title.

Namespace: DevExpress.XtraBars.Docking2010.Views.Tabbed

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

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

Property Value

Type Default Description
String *null*

A System.String value which specifies a regular tooltip’s title.

Remarks

Document objects support regular tooltips and SuperToolTips. Use the TooltipTitle property to specify a regular tooltip’s title. To set text for a regular tooltip, use the Document.Tooltip property. The Document.SuperTip property allows you to assign a SuperToolTip to a Document.

The following image shows a sample regular tooltip with a title:

Document Tooltip Title

If the TooltipTitle property is set to an empty string, the title isn’t displayed.

The DocumentManager.ToolTipController property determines the ToolTipController which manages tooltips for the Documents. The type of tooltips displayed by documents is determined by the ToolTipController.ToolTipType property. See Tooltip Management, for more information.

See Also