Skip to main content

GridControl.GetGroupRowValue(Int32, GridColumnBase) Method

Returns a value of the specified group row in the specified grouping column.

Namespace: DevExpress.UI.Xaml.Grid

Assembly: DevExpress.UI.Xaml.Grid.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

#Declaration

public object GetGroupRowValue(
    int rowHandle,
    GridColumnBase column
)

#Parameters

Name Type Description
rowHandle Int32

An integer value that specifies the group row’s handle.

column GridColumnBase

A GridColumnBase descendant that represents a grouping column.

#Returns

Type Description
Object

An object that represents the specified group row’s value. null (Nothing in Visual Basic) if the specified group row doesn’t exist.

#Remarks

The GetGroupRowValue method returns the grouping column’s value.

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

See Also