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

BaseControl.ToolTipTitle Property

Gets or sets a regular tooltip’s title.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v18.2.dll

Declaration

[DXCategory("ToolTip")]
[DefaultValue("")]
public virtual string ToolTipTitle { get; set; }

Property Value

Type Default Description
String String.Empty

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

Remarks

BaseControl descendants 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 BaseControl.ToolTip property. The BaseControl.SuperTip property allows you to assign a SuperToolTip to a control.

The following image shows a sample regular tooltip:

BaseControl_ToolTipTitle

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

The BaseControl.ToolTipController property determines the ToolTipController, which manages tooltips for the control. The type of tooltips displayed by controls is determined by the ToolTipController.ToolTipType property.

See Tooltip Management, for more information.

See Also