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.GroupValue Property

Gets or sets the group’s value. A group displays those tiles whose group column values (TileView.Columns.GroupColumn) match the group’s value.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v24.2.dll

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

#Declaration

[DefaultValue(null)]
[DXCategory("Options")]
public object GroupValue { get; set; }

#Property Value

Type Default Description
Object null

The group’s value.

#Remarks

To associate tiles with KanbanGroups, you need to set group values via the KanbanGroup.GroupValue property. The data type of the group values must match the type of data in the group column (TileView.Columns.GroupColumn). A group will display all tiles whose group column values match the group’s value. When you drag a tile from one group to another, this tile’s group column value is changed to the target group’s value.

See the TileViewOptionsKanban.Groups topic for more information.

See Also