Skip to main content

DataViewBase.ColumnChooserColumns Property

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

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v14.2.Core.dll

#Declaration

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

#Property Value

Type Description
ReadOnlyCollection<ColumnBase>

The collection of ColumnBase descendants that specify 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.

See Also