Skip to main content

GridControl.GetRow(Int32) Method

Returns an object in a data source that corresponds to the specified row.

Namespace: DevExpress.WinUI.Grid

Assembly: DevExpress.WinUI.Grid.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

public object GetRow(
    int rowHandle
)

Parameters

Name Type Description
rowHandle Int32

An integer value that specifies the row’s handle.

Returns

Type Description
Object

A data object that corresponds to the specified row.

Remarks

Row objects represent records in a data source. For instance, a System.Data.DataRow object represents a record in a System.Data.DataTable.

See Also