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

KanbanGroup.Visible Property

Gets or sets whether the Kanban group is visible.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v20.1.dll

NuGet Package: DevExpress.Win.Grid

Declaration

[DXCategory("Options")]
[DefaultValue(true)]
public bool Visible { get; set; }

Property Value

Type Default Description
Boolean true

A Boolean value that specifies whether the Kanban group is visible.

Remarks

The KanbanGroup.Visible property specifies the Kanban group visibility. The default property value is true. You can set the KanbanGroup.Visible property to false to hide the Kanban group.

The code snippet below shows how to hide a specific Kanban group.

tileView1.OptionsKanban.Groups.FindGroupByName("Planned").Visible = false;

See Also