Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCustomVerticalGrid.FocusedRow Property

Returns the focused row.

#Declaration

Delphi
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:

Delphi
type
  merWork: TcxDBMultiEditorRow;
//...
cxDBVerticalGrid.FocusedRow := merWork;
See Also