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

TcxCustomDataController.CheckFocusedSelected Method

In This Article

When selection of multiple records is enabled, this method selects the focused record.

#Declaration

Delphi
procedure CheckFocusedSelected;

#Remarks

The CheckFocusedSelected method is in effect only when selection of multiple records is enabled via the MultiSelect property.

In this mode, CheckFocusedSelected unselects all currently selected records and then sets selection to the focused record. For instance, moving focus by the FocusedRowIndex property or by the TDataSet.Locate method does not affect the rows selected. To select the newly focused row, call CheckFocusedSelected.

Use the ChangeRowSelection method to change the selection state of a particular row.

See Also