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

BaseControl.ToolTipIconType Property

Gets or sets the type of the tooltip icon.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

[DXCategory("ToolTip")]
[DefaultValue(ToolTipIconType.None)]
public virtual ToolTipIconType ToolTipIconType { get; set; }

Property Value

Type Default Description
ToolTipIconType **None**

A ToolTipIconType enumeration value.

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

BaseControl descendants support regular tooltips and SuperToolTips. Use the ToolTipIconType property to specify the icon type displayed within a regular tooltip. To set text for a regular tooltip, use the BaseControl.ToolTip property. The BaseControl.SuperTip property allows you to assign a SuperToolTip to a control.

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

See Tooltip Management for more information.

See Also