DataViewBase.ColumnChooserColumns Property
In This Article
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 |
---|---|
Read |
The collection of Column |
#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