Skip to main content

KanbanGroup.Visible Property

Gets or sets whether the Kanban group is visible.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

[DefaultValue(true)]
[DXCategory("Options")]
[XtraSerializableProperty]
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;

image

See Also