keyCode property

Gets the numeric key code of a key that is pressed.

 

Syntax

HRESULT value = object.get_keyCode(* p);

Property values

Type: long

The numeric code of the key that is pressed.

Standards information

Remarks

The IDOMKeyboardEvent::keyCode property represents the character code during the HTMLFrameSiteEvents::onkeypress event and the unmodified scan code of the key during HTMLFrameSiteEvents::onkeydown and HTMLFrameSiteEvents::onkeyup events. To detect whether the Alt, Ctrl, Meta, or Shift key is also pressed, see the IDOMKeyboardEvent::altKey, IDOMKeyboardEvent::ctrlKey, IDOMKeyboardEvent::metaKey, or IDOMKeyboardEvent::shiftKey property of the event.

The IDOMKeyboardEvent::keyCode property is provided for compatibility only. The latest version of the Document Object Model (DOM) Events specification defines a IDOMKeyboardEvent::key property instead.

See also

Reference

IDOMKeyboardEvent::char

IDOMKeyboardEvent::charCode

IDOMKeyboardEvent::key

IDOMKeyboardEvent::which