Skip to main content

DataControlBase.GetRow(Int32) Method

Returns a row object that corresponds to the specified row.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v14.2.Core.dll

#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

An object that corresponds to the specified row.

#Remarks

To obtain a row object that corresponds to a row with the specified handle, use the GetRow method. Row objects represent records in a data source. For instance, a System.Data.DataRow object represents a record in a DataTable.

To learn more, see Obtaining Row Handles and Identifying Rows.

See Also