Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

NameAction
TabMoves to the next cell in the current row or the first cell in the next row
EnterMoves to the next cell in the current row or the first cell in the next row
HomeMoves to the first cell in the current row
EndMoves to the last cell in the current row
PgUpMoves to the same cell in the first row of the previous set of visible rows
PgDownMoves to the same cell in the first row of the next set of visible rows
LeftMoves to the previous cell in the current row
RightMoves to the next cell in the current row
UpMoves to the same cell in the previous row
DownMoves to the same cell in the next row
Shift_TabMoves to the previous cell in the current row or the last cell in the previous row
Ctrl_HomeMoves to the first cell in the first row of the table
Ctrl_EndMoves to the last cell in the last row of the table
Ctrl_PgUpMoves to the same cell in the first row of the table
Ctrl_PgDownMoves to the same cell in the last row of the table
Ctrl_LeftMoves to the first visible cell in the current row
Ctrl_RightMoves to the last visible cell in the current row
Ctrl_UpMoves to the same cell in the first visible row
Ctrl_DownMoves to the same cell in the last visible row
Ctrl_EnterMoves out of the table on onto the next control (or previous control if SHIFT is pressed)
Code Block
 // Disable the ENTER key 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.NavKeyEnabled[Enter]", 0) 

 // Enable the ability to tab out using CTRL+ENTER 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.NavKeyEnabled[Ctrl_Enter]", 1)

...