Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

KanbanGroup.Visible Property

Gets or sets whether the Kanban group is visible.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v24.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