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

TileView.GetKanbanGroupByValue(Object) Method

Returns a KanbanGroup that has the specified group value.

Namespace: DevExpress.XtraGrid.Views.Tile

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