Skip to main content
All docs
V25.1
  • 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.v25.1.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