DataGridView.GetParentRowHandle(Int32) Method
In This Article
Returns the group row handle that identifies the group to which the specified data row belongs.
Namespace: DevExpress.XamarinForms.DataGrid
Assembly: DevExpress.XamarinForms.Grid.dll
NuGet Package: DevExpress.XamarinForms.Grid
#Declaration
C#
public int GetParentRowHandle(
int rowHandle
)
#Parameters
Name | Type | Description |
---|---|---|
row |
Int32 | The data row handle. |
#Returns
Type | Description |
---|---|
Int32 | The group row handle. |
#Remarks
Grid rows are identified by unique integer values - row handles.
- Data row handles are zero-based indexes that correspond to row order from top to bottom.
- Group row handles are negative values that start with -1. The order matches group row order from top to bottom.
See Also