Skip to main content

TileView.GetKanbanGroupByValue(Object) Method

Returns a KanbanGroup that has the specified group value.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v23.2.dll

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

Declaration

public KanbanGroup GetKanbanGroupByValue(
    object groupValue
)

Parameters

Name Type Description
groupValue Object

A value that identifies a target KanbanGroup. This value matches the KanbanGroup.GroupValue property value.

Returns

Type Description
KanbanGroup

The KanbanGroup with the specified group value.s

Remarks

In Kanban layout mode, you can manually create tile groups (KanbanGroups) via the TileView.OptionsKanban.Groups collection. Each KanbanGroup group has a unique identifier - a group value specified by the KanbanGroup.GroupValue property.

The GetKanbanGroupByValue method allows you to retrieve a KanbanGroup that has the given group value.

The GetKanbanGroupByValue method returns null if the TileView.OptionsKanban.Groups collection is empty.

See Also