Skip to main content

GridColumnCollection.Insert(Int32) Method

Creates a new column and adds it to the specified position within the collection.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

public virtual GridColumn Insert(
    int index
)

Parameters

Name Type Description
index Int32

A zero-based integer specifying the new column’s position within the collection. If negative, the column is inserted as the first element. If it exceeds the last available index, the column is appended to the collection.

Returns

Type Description
GridColumn

A GridColumn object representing the column inserted.

Remarks

Use the Insert method to add a new column with default settings to the specified position within the collection. Note that the new column has no caption, is not bound to any data source field and has other settings cleared. Thus, you need to customize the method’s return object to provide proper column settings.

Please refer to the Columns topic for details.

See Also