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

XtraTabPage.Tooltip Property

Gets or sets a regular tooltip for the tab page.

Namespace: DevExpress.XtraTab

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

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

Property Value

Type Default Description
String String.Empty

A String value which specifies the regular tooltip for the tab page.

Remarks

A regular tooltip or SuperToolTip can be displayed for a tab page header. The Tooltip property allows you to specify a regular tooltip. The XtraTabPage.SuperTip property can be used to assign a SuperToolTip object to the page.

A regular tooltip is shown below:

XtraTabControl_ShowToolTips

You can also display a title and an icon within regular tooltips. To do this, use the XtraTabPage.TooltipTitle and XtraTabPage.TooltipIconType properties.

Tooltips are not displayed if the tab control’s XtraTabControl.ShowToolTips property is set to the DefaultBoolean.False value.

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

See Tooltips for more information.

See Also