Skip to main content

ToolTipControllerShowEventArgs.IconSize Property

Gets the size of the predefined icon to display in the tooltip.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

public ToolTipIconSize IconSize { get; set; }

Property Value

Type Description
ToolTipIconSize

A ToolTipIconSize enumeration value that specifies the icon size.

Available values:

Name Description
Large

A large icon.

image

Small

A small icon.

image

Remarks

You can use this property to change the size of the predefined icon. The icon itself is specified by the ToolTipControllerShowEventArgs.IconType property. If the ToolTipControllerShowEventArgs.IconType is ToolTipIconType.None, the icon is not displayed and thus the IconSize property is not in effect.

Note: if the ToolTipControllerShowEventArgs.ImageList property is assigned and ToolTipControllerShowEventArgs.ImageIndex refers to an image from this image list, no predefined icon will be used. Instead the tooltip will display the specified image from ToolTipControllerShowEventArgs.ImageList.

See Also