GridColumn.ImageIndex Property
Gets or sets the index of the image displayed within the column header.
Namespace: DevExpress.XtraGrid.Columns
Assembly: DevExpress.XtraGrid.v24.1.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
Declaration
[Browsable(false)]
[DefaultValue(-1)]
[DXCategory("Appearance")]
[EditorBrowsable(EditorBrowsableState.Never)]
[ImageList("Images")]
[XtraSerializableProperty]
public virtual int ImageIndex { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Int32 | -1 | An integer value specifying the image by its zero-based index within the source collection. -1 to display no image. |
Remarks
The ImageIndex property specifies the index of the required image in the collection of images. The source of images is specified by the ColumnView.Images property.
It’s also possible to assign an image to a column header directly using the GridColumn.Image property.
The image below shows examples of band header and column header images.
See Also