Back to Devexpress

GridControl.GetRowAsync(Int32) Method

wpf-devexpress-dot-xpf-dot-grid-dot-gridcontrol-dot-getrowasync-x28-system-dot-int32-x29.md

latest2.2 KB
Original Source

GridControl.GetRowAsync(Int32) Method

Returns a row object that corresponds to the specified row handle asynchronously.

Namespace : DevExpress.Xpf.Grid

Assembly : DevExpress.Xpf.Grid.v25.2.dll

NuGet Package : DevExpress.Wpf.Grid.Core

Declaration

csharp
public Task<object> GetRowAsync(
    int rowHandle
)
vb
Public Function GetRowAsync(
    rowHandle As Integer
) As Task(Of Object)

Parameters

NameTypeDescription
rowHandleInt32

An integer value that specifies the row’s handle.

|

Returns

TypeDescription
Task<Object>

A Task<TResult> object which Result property is the row object that corresponds to the specified row handle.

|

Remarks

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

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

See Also

GetRow(Int32)

GridControl Class

GridControl Members

DevExpress.Xpf.Grid Namespace