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

Document.TooltipIconType Property

Gets or sets one of nine standard icons to be displayed within this Document‘s tool-tip.

Namespace: DevExpress.XtraBars.Docking2010.Views.Widget

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

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

Property Value

Type Default Description
ToolTipIconType **None**

A ToolTipIconType enumerator value that specifies the icon to be displayed within this Document‘s tool-tip.

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

In addition to a regular text hint, specified by the Document.ToolTip property, you can also display tool-tip caption (the Document.TooltipTitle property) and one of ninr predefined icons (the TooltipIconType property). To display more complex tips, use the Document.SuperTip property instead.

See the Tooltips for more info.

See Also