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

GridControl.Columns Property

Provides access to the grid’s column collection.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v19.1.dll

Declaration

public GridColumnCollection Columns { get; }

Property Value

Type Description
GridColumnCollection

A GridColumnCollection object that represents a collection of columns within the grid.

Remarks

The GridControl stores its columns within the Columns collection. This collection provides methods that allow you to add new and remove existing columns. The GridColumn objects represent individual columns. Columns can be accessed using indexed notation or by the field name (ColumnBase.FieldName).

<dxg:GridControl.Columns>
    <dxg:GridColumn FieldName="ProductName"/>
    <dxg:GridColumn FieldName="UnitPrice"/>
</dxg:GridControl.Columns> 

In Card Views, columns contained within the Columns collection correspond to card fields. In Table Views, they are displayed as columns.

ColumnsAndCards

Use the GridViewBase.VisibleColumns property to access only visible columns whose BaseColumn.Visible property is set to true,

The following code snippets (auto-collected from DevExpress Examples) contain references to the Columns property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also