disableAutoRepeat

This parameter turns off the automatic repeat feature for a specified key or keys.

Value

A whitespace-delimited string of decimal numbers that correspond to any KeyEvent names. KeyEvent names are available in the JDK's KeyEvent source. Note that values must be specified in decimal rather than hexadecimal form.

Example

The following example disables autorepeat on the Enter/Return (VK_ENTER = \n = 10) and F1 (VK_F1 = 0X70 = 112) keys.

<param name="disableAutoRepeat" value="10 112">