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

XtraTabPage.SuperTip Property

Gets or sets a SuperToolTip for the current tab page’s header.

Namespace: DevExpress.XtraTab

Assembly: DevExpress.XtraEditors.v18.2.dll

Declaration

public virtual SuperToolTip SuperTip { get; set; }

Property Value

Type Description
SuperToolTip

A SuperToolTip object associated with the current tab page.

Remarks

The XtraTabControl supports displaying regular tooltips and SuperToolTip objects for tab page headers. The SuperTip property allows you to assign a SuperToolTip object to a page header:

XtraTabControl_SuperTip

To specify a regular hint, use the XtraTabPage.Tooltip property. See Tooltip Management, to learn about the differences between the tooltip types.

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

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

See Also