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

ToolTipController.IconSize Property

Gets or sets tooltip icon size.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v18.2.dll

Declaration

[DefaultValue(ToolTipIconSize.Small)]
[DXCategory("Appearance")]
public ToolTipIconSize IconSize { get; set; }

Property Value

Type Default Description
ToolTipIconSize **Small**

The ToolTipIconSize enumerator.

Available values:

Name Description
Large

An icon displayed within a tooltip is large. The icon type can be selected via the ToolTipController.IconType property or can be specified in a handler of the ToolTipController.BeforeShow event via ToolTipControllerShowEventArgs.IconType property.

Small

An icon displayed within a tooltip is small. The icon type can be selected via the ToolTipController.IconType property or can be specified in a handler of the ToolTipController.BeforeShow event via ToolTipControllerShowEventArgs.IconType property.

Remarks

Predefined tooltip icons can be accessed via the ToolTipController.IconType property. You can assign your own icon to the tooltips using the ToolTipController.ImageList property. Use the ToolTipController.ImageIndex property to specify the icon to be displayed.

See Also