GridControl.GetGroupRowValue(Int32, GridColumnBase) Method
In This Article
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 |
---|---|---|
row |
Int32 | An integer value that specifies the group row’s handle. |
column | Grid |
A Grid |
#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