Skip to main content
A newer version of this page is available. .
Tab

ASPxGridView.GetChildRow(Int32, Int32) Method

Returns a data row contained within the specified group.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

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