TcxCustomVerticalGrid.FocusedRow Property
Returns the focused row.
Declaration
property FocusedRow: TcxCustomRow read; write;
Property Value
Type |
---|
TcxCustomRow |
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:
type
merWork: TcxDBMultiEditorRow;
//...
cxDBVerticalGrid.FocusedRow := merWork;
See Also