Back to Devexpress

KanbanGroup.Visible Property

windowsforms-devexpress-dot-xtragrid-dot-views-dot-tile-dot-kanbangroup-ace9376d.md

latest1.9 KB
Original Source

KanbanGroup.Visible Property

Gets or sets whether the Kanban group is visible.

Namespace : DevExpress.XtraGrid.Views.Tile

Assembly : DevExpress.XtraGrid.v25.2.dll

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

Declaration

csharp
[DefaultValue(true)]
[DXCategory("Options")]
[XtraSerializableProperty]
public bool Visible { get; set; }
vb
<DXCategory("Options")>
<XtraSerializableProperty>
<DefaultValue(True)>
Public Property Visible As Boolean

Property Value

TypeDefaultDescription
Booleantrue

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.

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

See Also

KanbanGroup Class

KanbanGroup Members

DevExpress.XtraGrid.Views.Tile Namespace