Skip to main content

DataGridView.GetChildRowCount(Int32) Method

Returns the number of data rows in the group.

Namespace: DevExpress.XamarinForms.DataGrid

Assembly: DevExpress.XamarinForms.Grid.dll

NuGet Package: DevExpress.XamarinForms.Grid

Declaration

public int GetChildRowCount(
    int groupRowHandle
)

Parameters

Name Type Description
groupRowHandle Int32

The group row handle or group index.

Returns

Type Description
Int32

The number of rows in the group.

Remarks

Pass the group row handle (a negative integer, starting from -1) or the group’s zero-based index within the grid’s collection of groups.

Grid Row Handles

To obtain the handle of the specified child row, use the GetChildRowHandle method. A child row is identified by its visible index (position) within the specified group.

See Also