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

ColumnBase.Visible Property

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

Namespace: DevExpress.UI.Xaml.Grid

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

Declaration

[XtraSerializableProperty]
[GridUIProperty]
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