ColumnView.GetFocusedRowCellDisplayText(GridColumn) Method
Returns the text displayed in the specified column within the focused row.
Namespace: DevExpress.XtraGrid.Views.Base
Assembly: DevExpress.XtraGrid.v24.2.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
#Declaration
public string GetFocusedRowCellDisplayText(
GridColumn column
)
#Parameters
Name | Type | Description |
---|---|---|
column | Grid |
A Grid |
#Returns
Type | Description |
---|---|
String | A string representing the text displayed within the specified column in the focused row. |
#Remarks
Use the GetFocusedRowCellDisplayText method to obtain the textual representation of a specific cell’s value. The returned string is formatted as specified by the GridColumn.DisplayFormat property of the column in which the specified cell resides. To obtain the cell’s actual value use the ColumnView.GetFocusedRowCellValue method.
If the specified column does not belong to the current view, this method will try to find the column within the current View whose field name matches the field name of the specified column and then its value will be returned. If no such column is found, this method will return an empty string.
If a group row is focused this method also returns an empty string.
The currently focused row is determined by the ColumnView.FocusedRowHandle property.
To get the text displayed within the focused cell, the ColumnView.GetFocusedDisplayText method can be used. The ColumnView.GetRowCellDisplayText method can be used to retrieve the displayed values of any cell in a View.
Note
Detail pattern Views do not contain data and they are never displayed within Xtra
- Grid
Control. - returns the top most View in a grid;Main View - Grid
Control. - returns the focused View;Focused View - Grid
Control. - returns the currently maximized View;Default View - the sender parameter of View specific events;
- Grid
View. - returns a detail clone View for a specific master row.Get Detail View