Skip to main content

ColumnView.GetFocusedValue() Method

Returns the focused cell’s value.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

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 Views that display real data within the Grid Control. Use the following methods to access these Views with which an end user interacts at runtime.

See Also