Skip to main content

GridControl.GetRow(Int32) Method

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

Namespace: DevExpress.UI.Xaml.Grid

Assembly: DevExpress.UI.Xaml.Grid.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

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