Skip to main content

ColumnBase.Visible Property

Gets or sets whether the column is displayed within a grid. This is a dependency property.

Namespace: DevExpress.WinUI.Grid

Assembly: DevExpress.WinUI.Grid.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

[DP(true, Handler = "OnVisibleChanged")]
public bool Visible { get; set; }

Property Value

Type Description
Boolean

true to display the column within a grid; otherwise, false.

Remarks

To hide the column, set its Visible property to false. To show a hidden column, set its Visible property to true. To show it at a specified position among visible columns, use its ColumnBase.VisibleIndex property.

See Also