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

GridBandColumnCollection.Item[Int32] Property

Provides indexed access to columns.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

public BandedGridColumn this[int index] { get; }

Parameters

Name Type Description
index Int32

An integer value specifying the required column’s zero-based index. If negative or exceeds the number of elements, an exception is raised.

Property Value

Type Description
BandedGridColumn

A BandedGridColumn object representing the column at the specified position within the collection.

Remarks

Use this property to access individual columns using index notation.

See Also