Skip to main content
A newer version of this page is available. .

TreeListNode.SelectImageIndex Property

Gets or sets the index of the node’s select image displayed when the node is focused.

Namespace: DevExpress.XtraTreeList.Nodes

Assembly: DevExpress.XtraTreeList.v19.1.dll

Declaration

[DefaultValue(0)]
[DXCategory("Appearance")]
[ImageList("SelectImageList")]
public virtual int SelectImageIndex { get; set; }

Property Value

Type Default Description
Int32 0

An integer value representing the zero-based index of the select image displayed when the node is focused.

Remarks

veNodeImage

The source of select images is specified by the TreeList.SelectImageList property. Certain select images are assigned to nodes by indexes (zero-based integer values referring to images in the SelectImageList).

The TreeListNode.ImageIndex property identifies the index of a node’s select image displayed when this node is not focused. When the node is focused, this image is automatically replaced with the image specified by the SelectImageIndex property.

See TreeListNode.ImageIndex to learn more.

See Also