Back to Devexpress

ColumnView.GetFocusedValue() Method

windowsforms-devexpress-dot-xtragrid-dot-views-dot-base-dot-columnview-fda4d7c3.md

latest4.7 KB
Original Source

ColumnView.GetFocusedValue() Method

Returns the focused cell’s value.

Namespace : DevExpress.XtraGrid.Views.Base

Assembly : DevExpress.XtraGrid.v25.2.dll

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

Declaration

csharp
public virtual object GetFocusedValue()
vb
Public Overridable Function GetFocusedValue As Object

Returns

TypeDescription
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

FocusedColumn

FocusedRowHandle

GetFocusedDisplayText()

GetFocusedRowCellDisplayText

GetRowCellDisplayText

GetFocusedValue()

GetFocusedRowCellValue

GetRowCellValue

SetFocusedValue(Object)

SetFocusedRowCellValue

SetRowCellValue

Edit Data. Create Cell Editors. Validate User Input

ColumnView Class

ColumnView Members

DevExpress.XtraGrid.Views.Base Namespace