Skip to main content
A newer version of this page is available. .

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.v20.1.dll

NuGet Package: DevExpress.Win.Grid

Declaration

[DXCategory("Options")]
[DefaultValue(null)]
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