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

BandedGridColumnCollection.Item[Int32] Property

Gets a column at a specific index.

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 zero-based index of the required column. If negative or exceeds the maximum available index, an exception is raised.

Property Value

Type Description
BandedGridColumn

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

Remarks

Use this property to access individual columns using index notation.

See Also