ASPxGridView.GetChildRow(Int32, Int32) Method
In This Article
Returns a data row contained within the specified group.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
group |
Int32 | An integer value that identifies a group row by its visible index. |
child |
Int32 | An integer value that identifies a data row within the group by its index. |
#Returns
Type | Description |
---|---|
Object | An object that represents the specified row contained within the specified group. |
#Remarks
The GetChildRow method allows you to obtain a data row contained within the specified group row. The group row is identified by its visible index. A data row is obtained by its index within the group. To obtain the number of data rows contained within the specified group, use the ASPxGridView.GetChildRowCount method.
See Also