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

TdxSpreadSheetEnterKeyNavigation Enum

Enumerates cell navigation variants for protected worksheets using the Enter key or the Shift+Enter key combination.

#Declaration

Delphi
TdxSpreadSheetEnterKeyNavigation = (
    eknDefault,
    eknSkipLockedCells
);

#Members

Name Description
eknDefault

This value corresponds to the default cell keyboard navigation when the Enter key moves focus cell by cell from top to bottom through both locked and unlocked cells, either within the current cell selections or an entire protected worksheet.

The Shift+Enter key combination moves focus identically to the Enter key, but in the opposite direction.

eknSkipLockedCells

This value corresponds to the cell keyboard navigation behavior when the Enter key moves cell focus only between unlocked cells in an entire protected worksheet or within its current cell selections, omitting all locked cells.

The Shift+Enter key combination moves focus identically to the Enter key, but in the opposite direction.

#Remarks

A spreadsheet control’s OptionsBehavior.EnterKeyNavigation property references the TdxSpreadSheetEnterKeyNavigation type.

See Also