Skip to main content

TdxSpreadSheetEnterKeyNavigation Enum

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

Declaration

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