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.v18.2.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 grid stores its columns within the Columns collection. This collection provides methods that allow you to add new and remove existing columns. Individual columns are represented by GridColumn objects, and can be accessed using indexed notation or by the field name (ColumnBase.FieldName).

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

ColumnsAndCards

To access only visible columns whose BaseColumn.Visible property is set to true, use a view’s GridViewBase.VisibleColumns property.

To learn more, see Columns and Card Fields and Creating Columns and Binding Them to Data Properties.

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