TcxCustomVerticalGrid.FocusedRow Property
In This Article
Returns the focused row.
#Declaration
Delphi
property FocusedRow: TcxCustomRow read; write;
#Property Value
Type |
---|
Tcx |
#Remarks
You can use the FocusedRow property to get the currently focused row. If no row is focused, the property returns nil.
You can also assign a row to the property to shift focus to it. Consider the following code:
Delphi
type
merWork: TcxDBMultiEditorRow;
//...
cxDBVerticalGrid.FocusedRow := merWork;
See Also