KeyboardEvent objects describe a user interaction with the keyboard; each event describes a single interaction between the user and a key (or combination of a key with modifier keys) on the keyboard.
Documentation KeyboardEvent by Mozilla Contributors, licensed under CC-BY-SA 2.5.
See also:
Static variables
@:value(48)staticinlineread onlyDOM_VK_0:Int = 48
@:value(49)staticinlineread onlyDOM_VK_1:Int = 49
@:value(50)staticinlineread onlyDOM_VK_2:Int = 50
@:value(51)staticinlineread onlyDOM_VK_3:Int = 51
@:value(52)staticinlineread onlyDOM_VK_4:Int = 52
@:value(53)staticinlineread onlyDOM_VK_5:Int = 53
@:value(54)staticinlineread onlyDOM_VK_6:Int = 54
@:value(55)staticinlineread onlyDOM_VK_7:Int = 55
@:value(56)staticinlineread onlyDOM_VK_8:Int = 56
@:value(57)staticinlineread onlyDOM_VK_9:Int = 57
@:value(65)staticinlineread onlyDOM_VK_A:Int = 65
@:value(107)staticinlineread onlyDOM_VK_ADD:Int = 107
@:value(18)staticinlineread onlyDOM_VK_ALT:Int = 18
@:value(64)staticinlineread onlyDOM_VK_AT:Int = 64
@:value(66)staticinlineread onlyDOM_VK_B:Int = 66
@:value(67)staticinlineread onlyDOM_VK_C:Int = 67
@:value(68)staticinlineread onlyDOM_VK_D:Int = 68
@:value(69)staticinlineread onlyDOM_VK_E:Int = 69
@:value(35)staticinlineread onlyDOM_VK_END:Int = 35
@:value(70)staticinlineread onlyDOM_VK_F:Int = 70
@:value(112)staticinlineread onlyDOM_VK_F1:Int = 112
@:value(121)staticinlineread onlyDOM_VK_F10:Int = 121
@:value(122)staticinlineread onlyDOM_VK_F11:Int = 122
@:value(123)staticinlineread onlyDOM_VK_F12:Int = 123
@:value(124)staticinlineread onlyDOM_VK_F13:Int = 124
@:value(125)staticinlineread onlyDOM_VK_F14:Int = 125
@:value(126)staticinlineread onlyDOM_VK_F15:Int = 126
@:value(127)staticinlineread onlyDOM_VK_F16:Int = 127
@:value(128)staticinlineread onlyDOM_VK_F17:Int = 128
@:value(129)staticinlineread onlyDOM_VK_F18:Int = 129
@:value(130)staticinlineread onlyDOM_VK_F19:Int = 130
@:value(113)staticinlineread onlyDOM_VK_F2:Int = 113
@:value(131)staticinlineread onlyDOM_VK_F20:Int = 131
@:value(132)staticinlineread onlyDOM_VK_F21:Int = 132
@:value(133)staticinlineread onlyDOM_VK_F22:Int = 133
@:value(134)staticinlineread onlyDOM_VK_F23:Int = 134
@:value(135)staticinlineread onlyDOM_VK_F24:Int = 135
@:value(114)staticinlineread onlyDOM_VK_F3:Int = 114
@:value(115)staticinlineread onlyDOM_VK_F4:Int = 115
@:value(116)staticinlineread onlyDOM_VK_F5:Int = 116
@:value(117)staticinlineread onlyDOM_VK_F6:Int = 117
@:value(118)staticinlineread onlyDOM_VK_F7:Int = 118
@:value(119)staticinlineread onlyDOM_VK_F8:Int = 119
@:value(120)staticinlineread onlyDOM_VK_F9:Int = 120
@:value(71)staticinlineread onlyDOM_VK_G:Int = 71
@:value(72)staticinlineread onlyDOM_VK_H:Int = 72
@:value(73)staticinlineread onlyDOM_VK_I:Int = 73
@:value(74)staticinlineread onlyDOM_VK_J:Int = 74
@:value(75)staticinlineread onlyDOM_VK_K:Int = 75
@:value(76)staticinlineread onlyDOM_VK_L:Int = 76
@:value(77)staticinlineread onlyDOM_VK_M:Int = 77
@:value(78)staticinlineread onlyDOM_VK_N:Int = 78
@:value(79)staticinlineread onlyDOM_VK_O:Int = 79
@:value(80)staticinlineread onlyDOM_VK_P:Int = 80
@:value(253)staticinlineread onlyDOM_VK_PA1:Int = 253
@:value(81)staticinlineread onlyDOM_VK_Q:Int = 81
@:value(82)staticinlineread onlyDOM_VK_R:Int = 82
@:value(83)staticinlineread onlyDOM_VK_S:Int = 83
@:value(84)staticinlineread onlyDOM_VK_T:Int = 84
@:value(85)staticinlineread onlyDOM_VK_U:Int = 85
@:value(38)staticinlineread onlyDOM_VK_UP:Int = 38
@:value(86)staticinlineread onlyDOM_VK_V:Int = 86
@:value(87)staticinlineread onlyDOM_VK_W:Int = 87
@:value(91)staticinlineread onlyDOM_VK_WIN:Int = 91
@:value(88)staticinlineread onlyDOM_VK_X:Int = 88
@:value(89)staticinlineread onlyDOM_VK_Y:Int = 89
@:value(90)staticinlineread onlyDOM_VK_Z:Int = 90
Constructor
Variables
read onlyaltKey:Bool
Returns a Boolean that is true if the Alt ( Option or ⌥ on OS X) key was active when the key event was generated.
Returns a Number representing the Unicode reference number of the key; this attribute is used only by the keypress event. For keys whose char attribute contains multiple characters, this is the Unicode value of the first character in that attribute. In Firefox 26 this returns codes for printable characters.
Warning: This attribute is deprecated; you should use KeyboardEvent.key instead, if available.
read onlycode:String
Returns a DOMString with the code value of the key represented by the event.
Returns a Boolean that is true if the Ctrl key was active when the key event was generated.
Returns a Boolean that is true if the event is fired between after compositionstart and before compositionend.
read onlykey:String
Returns a DOMString representing the key value of the key represented by the event.
Returns a Number representing a system and implementation dependent numerical code identifying the unmodified value of the pressed key.
Warning: This attribute is deprecated; you should use KeyboardEvent.key instead, if available.
Returns a Number representing the location of the key on the keyboard or other input device.
Returns a Boolean that is true if the Meta key (on Mac keyboards, the ⌘ Command key; on Windows keyboards, the Windows key (⊞)) was active when the key event was generated.
read onlyrepeat:Bool
Returns a Boolean that is true if the key is being held down such that it is automatically repeating.
Returns a Boolean that is true if the Shift key was active when the key event was generated.
Methods
Returns a Boolean indicating if a modifier key such as Alt, Shift, Ctrl, or Meta, was pressed when the event was created.
@:value({ charCode : 0, keyCode : 0, metaKey : false, shiftKey : false, altKey : false, ctrlKey : false, cancelable : false, canBubble : false })initKeyEvent(type:String, canBubble:Bool = false, cancelable:Bool = false, ?view:Window, ctrlKey:Bool = false, altKey:Bool = false, shiftKey:Bool = false, metaKey:Bool = false, keyCode:Int = 0, charCode:Int = 0):Void
@:value({ metaKey : false, shiftKey : false, altKey : false, ctrlKey : false, locationArg : 0, keyArg : "", cancelableArg : false, bubblesArg : false })initKeyboardEvent(typeArg:String, bubblesArg:Bool = false, cancelableArg:Bool = false, ?viewArg:Window, keyArg:String = "", locationArg:Int = 0, ctrlKey:Bool = false, altKey:Bool = false, shiftKey:Bool = false, metaKey:Bool = false):Void
Inherited Variables
read onlydetail:Int
Returns a long with details about the event, depending on the event type.
read onlylayerX:Int
Returns the horizontal coordinate of the event relative to the current layer.
read onlylayerY:Int
Returns the vertical coordinate of the event relative to the current layer.
read onlypageX:Int
Returns the horizontal coordinate of the event relative to the whole document.
read onlypageY:Int
Returns the vertical coordinate of the event relative to the whole document.
Returns a WindowProxy that contains the view that generated the event.
read onlywhich:Int
Returns the numeric keyCode of the key pressed, or the character code (charCode) for an alphanumeric key pressed.
Defined by Event
A Boolean indicating whether the event bubbles up through the DOM or not.
A historical alias to Event.stopPropagation(). Setting its value to true before returning from an event handler prevents propagation of the event.
A Boolean indicating whether the event is cancelable.
A Boolean value indicating whether or not the event can bubble across the boundary between the shadow DOM and the regular DOM.
A reference to the currently registered target for the event. This is the object to which the event is currently slated to be sent; it's possible this has been changed along the way through retargeting.
Indicates whether or not event.preventDefault() has been called on the event.
Indicates which phase of the event flow is being processed.
The explicit original target of the event (Mozilla-specific).
Indicates whether or not the event was initiated by the browser (after a user click for instance) or by a script (using an event creation method, like event.initEvent).
The original target of the event, before any retargetings (Mozilla-specific).
A historical property introduced by Internet Explorer and eventually adopted into the DOM specification in order to ensure existing sites continue to work. Ideally, you should try to use Event.preventDefault() and Event.defaultPrevented instead, but you can use returnValue if you choose to do so.
A reference to the target to which the event was originally dispatched.
The time at which the event was created (in milliseconds). By specification, this value is time since epoch, but in reality browsers' definitions vary; in addition, work is underway to change this to be a DOMHighResTimeStamp instead.
read onlytype:String
The name of the event (case-insensitive).
Inherited Methods
@:value({ aDetail : 0, aCancelable : false, aCanBubble : false })initUIEvent(aType:String, aCanBubble:Bool = false, aCancelable:Bool = false, ?aView:Window, aDetail:Int = 0):Void
Initializes a UIEvent object. If the event has already being dispatched, this method does nothing.
Defined by Event
Returns the event’s path (objects on which listeners will be invoked). This does not include nodes in shadow trees if the shadow root was created with its ShadowRoot.mode closed.
@:value({ cancelable : false, bubbles : false })initEvent(type:String, bubbles:Bool = false, cancelable:Bool = false):Void
Initializes the value of an Event created. If the event has already being dispatched, this method does nothing.
Cancels the event (if it is cancelable).
For this particular event, no other listener will be called. Neither those attached on the same element, nor those attached on elements which will be traversed later (in capture phase, for instance)
Stops the propagation of events further along in the DOM.