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

ColumnView.GetFocusedDataRow() Method

Returns a DataRow in the bound DataTable that contains data for the focused grid row.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v20.2.dll

NuGet Package: DevExpress.Win.Grid

Declaration

public DataRow GetFocusedDataRow()

Returns

Type Description
DataRow

A DataRow that specifies a row of data in a DataTable.

Remarks

Use the following methods to get an object that contains data for a specific node:

  • GetRow(Int32) — Returns an Object in the bound data source that contains data for the specified grid row.

    To get the focused grid row’s data row, use the GetFocusedRow() method.

  • GetDataRow(Int32) — Returns a DataRow in the bound DataTable that contains data for the specified grid row.

    To get the focused grid row’s DataRow, use the GetFocusedDataRow() method.

    Note

    If the bound data source is a custom collection, these methods return null (Nothing in VB).

To specify the row in the method’s parameter, use the row’s handle.

For a group row, these methods return the first grid row’s underlying data row.

Note

Detail pattern Views do not contain data and they are never displayed within XtraGrid. So, the GetFocusedDataRow member must not be invoked for these Views. The GetFocusedDataRow member can only be used with real Views that are displayed within the Grid Control. The real Views with which an end-user interacts at runtime can be accessed using the following methods.

The following code snippets (auto-collected from DevExpress Examples) contain references to the GetFocusedDataRow() method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also