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

ColumnView.GetFocusedValue() Method

Returns the focused cell’s value.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public virtual object GetFocusedValue()

Returns

Type Description
Object

An object that is the focused cell’s value.

Remarks

The currently focused cell is identified by the focused column and the focused row. The focused column is determined by the ColumnView.FocusedColumn property, and the focused row is determined by the ColumnView.FocusedRowHandle property.

To get values in other cells in the focused row, use the ColumnView.GetFocusedRowCellValue method.

The ColumnView.GetRowCellValue method can be used to get values of any column in any row.

The following methods can be used to get display values of specific cells: ColumnView.GetFocusedDisplayText, ColumnView.GetFocusedRowCellDisplayText and ColumnView.GetRowCellDisplayText.

Note

Detail pattern Views do not contain data and they are never displayed within XtraGrid. So, the GetFocusedValue member must not be invoked for these Views. The GetFocusedValue 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.

See Also