Skip to main content

Document.TooltipIconType Property

Gets or sets the type of the tooltip icon.

Namespace: DevExpress.XtraBars.Docking2010.Views.Tabbed

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(ToolTipIconType.None)]
public ToolTipIconType TooltipIconType { get; set; }

Property Value

Type Default Description
ToolTipIconType None

A ToolTipIconType enumeration value. The default is ToolTipIconType.None.

Available values:

Name Description
Application

A tooltip contains the default application icon.

Asterisk

A tooltip contains the system asterisk icon.

Error

A tooltip contains the system error icon.

Exclamation

A tooltip contains the system exclamation icon.

Hand

A tooltip contains the system hand icon.

Information

A tooltip contains the system information icon.

Question

A tooltip contains the system question icon.

Warning

A tooltip contains the system warning icon.

A tooltip contains the Windows logo icon.

None

A tooltip contains no predefined icon.

Remarks

Document objects support a regular tooltip and SuperToolTip. Use the TooltipIconType property to specify the icon type displayed within a regular tooltip. To set text for a regular tooltip, use the Document.Tooltip property. The Document.SuperTip property allows you to assign a SuperToolTip to the document.

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

See Also