Skip to main content

GridControl.GetGroupInfo(Int32) Method

Provides access to information on the specified data group.

Namespace: DevExpress.Mobile.DataGrid

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

Declaration

public IGroupInfo GetGroupInfo(
    int rowHandle
)

Parameters

Name Type Description
rowHandle Int32

An integer value that specifies the group row handle.

Returns

Type Description
IGroupInfo

An object implementing the IGroupInfo interface.

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.

Use the GetGroupInfo method to obtain information on a particular data group. For example, you can get group summary values calculated for the specified group (IGroupInfo.Summaries), obtain a value for which the group was created (IGroupInfo.Value), count data rows in the group (IGroupInfo.RowCount), check whether the group is currently collapsed (GridControl.IsGroupCollapsed), etc.

See Also