SCREEN SET_KEYPAD_MODE

SCREEN SET_KEYPAD_MODE sets the terminal's numeric keypad to either numeric or application mode.  In application mode, numeric keypad keys are considered as function keys.  In numeric mode, these keys are equivalent to the corresponding keys on the main keyboard.

SYNTAX

SCREEN SET_KEYPAD_MODE /USING/ new_mode

new_mode

specifies if the keypad is to be in application or numeric mode.  The valid modes are:

  • @APPL or @KP_APPL specifies keypad application mode.
  • @NUM or @KP_NUM specifies keypad numeric mode.

EXAMPLE

SCREEN SET_KEYPAD_MODE USING @APPL

This example sets the keypad to application mode.

Back to Statements and Commands    Next page SCREEN SET_WINDOW_SCROLL_REGION