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

XtraTabPage.Tooltip Property

Gets or sets a regular tooltip for the tab page.

Namespace: DevExpress.XtraTab

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#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 Hints and Tooltips for more information.

See Also