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

DataControlBase.VisibleColumns Property

Gets a list of visible columns. This is a dependency property.

Namespace: DevExpress.WinUI.Grid

Assembly: DevExpress.WinUI.Grid.v22.1.dll

NuGet Package: DevExpress.WinUI

Declaration

[DP(null)]
public IList<ColumnBase> VisibleColumns { get; protected set; }

Property Value

Type Description
IList<ColumnBase>

A list of visible columns.

Remarks

The VisibleColumns list contains columns whose ColumnBase.Visible property is set to true. Use the DataControlBase.Columns property to access the collection that contains all grid columns.

See Also