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

DataViewBase.ColumnChooserColumns Property

Gets a collection of hidden columns whose headers are displayed within the Column Band Chooser. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

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

Declaration

[Browsable(false)]
public ReadOnlyCollection<ColumnBase> ColumnChooserColumns { get; protected set; }

Property Value

Type Description
ReadOnlyCollection<ColumnBase>

The collection of ColumnBase descendants that represent hidden columns displayed within the Column Chooser.

Remarks

A column is hidden if its BaseColumn.Visible property is set to false. Its header is displayed within the Column Chooser if the ColumnBase.ShowInColumnChooser property is set to true.

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

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ColumnChooserColumns 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