Skip to main content

GridColumn.IsGrouped Property

Gets or sets whether the grid’s data is grouped by the current column. This is a bindable property.

Namespace: DevExpress.Mobile.DataGrid

Assembly: DevExpress.Mobile.Grid.v18.2.dll

Declaration

[XtraSerializableProperty]
public bool IsGrouped { get; set; }

Property Value

Type Description
Boolean

true, if data grouping by the current column is applied; otherwise, false.

Remarks

Important

This documentation topic describes legacy technology. We no longer develop new functionality for the GridControl and suggest that you use the new DataGridView control instead.

Another way to group data in the grid is to use the GridControl.GroupBy method. 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