Skip to main content

GridControlBase.VisibleColumns Property

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

Namespace: DevExpress.UI.Xaml.Grid

Assembly: DevExpress.UI.Xaml.Grid.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public IList<GridColumnBase> VisibleColumns { get; protected set; }

Property Value

Type Description
IList<GridColumnBase>

The list of visible columns.

Remarks

The VisibleColumns list contains the columns whose ColumnBase.Visible property is set to true. To get all columns (visible and hidden) contained within the grid, use the GridControl.Columns property.

See Also