GridControl.GroupBy(GridColumn) Method
In This Article
Groups data in the grid by the specified column.
Namespace: DevExpress.Mobile.DataGrid
Assembly: DevExpress.Mobile.Grid.v18.2.dll
#Declaration
public void GroupBy(
GridColumn column
)
#Parameters
Name | Type | Description |
---|---|---|
column | Grid |
A Grid |
#Remarks
Important
This documentation topic describes legacy technology. We no longer develop new functionality for the Grid
Another way to group data by a column is to set this column’s GridColumn.IsGrouped property to true. End-users can group data by a column using a menu that appears when they touch and hold this column.
To cancel grouping, use the GridControl.ClearGrouping method.
See Also