GridControl.GetGroupRowValue(Int32, ColumnBase) Method
In This Article
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 |
---|---|---|
row |
Int32 | The group row’s handle. |
column | Column |
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