Skip to main content
A newer version of this page is available. .

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.v18.2.dll

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