Table of Contents

Property ImageIndex

Namespace
Alternet.UI
Assembly
Alternet.UI.Common.dll

ImageIndex

Gets or sets the index of the image that is displayed for the item.

public virtual int? ImageIndex { get; set; }

Property Value

int?

The zero-based index of the image in the ImageList that is displayed for the item. The default is null.

Remarks

The effect of setting this property depends on the value of the SmallImageList and LargeImageList properties. Depending on the current value of the View property of the ListView control associated with the item, the ImageList used by the item could be one specified in the LargeImageList property or the SmallImageList property of the ListView control. If the View property is set to LargeIcon, the ImageList specified in the LargeImageList property is used; otherwise, the ImageList specified in the SmallImageList property is used. The images defined in the ImageList specified in the SmallImageList property should have the same index positions as the images in the ImageList specified in the LargeImageList property. If the index positions are the same for both ImageList instances, you can set a single index value for the ImageIndex property and the appropriate image will be displayed regardless of the value of the View property of the ListView control.