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

ColumnView.GetFocusedDataRow() Method

Returns a DataRow object that represents the focused row.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

public DataRow GetFocusedDataRow()

Returns

Type Description
DataRow

A DataRow object representing the focused row.

Remarks

If the View’s data source is a custom collection of objects, the GetFocusedDataRow method returns null (Nothing in Visual Basic). If the View’s data is supplied by a DataTable or DataView object, an DataRow object representing the focused row is returned.

The DataRow object allows you to access row values, row errors, delete rows, etc. Please refer to the DataRow class description for details.

To get objects which correspond to grid rows regardless of the data source’s type, use the ColumnView.GetRow method.

For group rows, the GetFocusedDataRow function returns an object that represents the first data row in the associated group.

See the Accessing Rows in Code. Row Handles section in the Rows topic to learn more.

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