Skip to main content

GridControl.GetGroupRowValue(Int32, ColumnBase) Method

Returns the value of the group row that corresponds to the specified column.

Namespace: DevExpress.WinUI.Grid

Assembly: DevExpress.WinUI.Grid.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

public object GetGroupRowValue(
    int rowHandle,
    ColumnBase column
)

Parameters

Name Type Description
rowHandle Int32

The group row’s handle.

column ColumnBase

A group column.

Returns

Type Description
Object

The specified group row’s value.

Remarks

Group row handles are negative (start from -1).

If the GridControl does not group data by values of the specified column, the GetGroupRowValue method returns the value of the first cell in the specified column and group.

See Also