Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ToolTipControllerShowEventArgs.IconSize Property

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

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v24.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.

Use the e.ImageOptions property to display custom tooltip images and specify their settings.

See Also