Skip to main content
Tab

ASPxGridView.GetChildRow(Int32, Int32) Method

Returns a data row contained within the specified group.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v24.2.dll

NuGet Package: DevExpress.Web

#Declaration

public virtual object GetChildRow(
    int groupRowVisibleIndex,
    int childIndex
)

#Parameters

Name Type Description
groupRowVisibleIndex Int32

An integer value that identifies a group row by its visible index.

childIndex 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