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

ColumnChooserControl.Columns Property

Gets or sets the list of invisible columns. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, DevExpress.Wpf.Grid.Core

Declaration

public IList Columns { get; set; }

Property Value

Type Description
IList

The list of invisible columns.

Remarks

The Columns list contains the columns whose BaseColumn.Visible property is set to false. To access the collection which contains all the columns owned by the grid, use the GridControl.Columns property.

Hidden columns that are displayed within the Column Band Chooser are stored within a view’s DataViewBase.ColumnChooserColumns read-only collection.

To learn more, see Hiding and Displaying Columns and Bands and Accessing and Identifying Columns.

See Also