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
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