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

ToolTipController.ImageIndex Property

Gets or sets the index of an image to be displayed within tooltips.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v24.2.dll

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

#Declaration

[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
public int ImageIndex { get; set; }

#Property Value

Type Default Description
Int32 -1

The integer value specifying the index of an image to be displayed within tooltips.

#Remarks

You can use the ToolTipController.ImageList property to specify the list of images that can be displayed within tooltips. The ImageIndex property specifies the index of an image within this list. If this property is set to a valid index, all tooltips will display the corresponding image.

To display different images within different tooltips, handle the ToolTipController.BeforeShow event and use the e.ImageOptions property to specify custom images and their settings.

See Also