initKeyboardEvent method
Initializes a new keyboard event that the createEvent method created.
createEvent()/initEvent() constructor pattern for synthetic events is deprecated. See the Synthetic Events page for more information.![]() ![]() |
Syntax
var retval = KeyboardEvent.initKeyboardEvent(eventType, canBubble, cancelable, viewArg, keyArg, locationArg, modifiersListArg, repeat, locale);Parameters
- eventType [in]
-
Type: String
One of the following values, or a user-defined custom event type.
-
An onkeydown event.
-
An onkeypress event.
-
An onkeyup event.
- canBubble [in]
-
Type: Boolean
- cancelable [in]
-
Type: Boolean
- viewArg [in]
-
Type: IHTMLWindow2
The active window object or null. This value is returned in the view property of the event. - keyArg [in]
-
Type: String
The key identifier. This value is returned in the key property of the event.
- locationArg [in]
-
Type: unsigned long
The location of the key on the device. This value is returned in the location property of the event.
- modifiersListArg [in]
-
Type: String
A space-separated list of any of the following values:
-
The left or right Alt key is pressed.
-
The Ctrl and Alt keys are pressed.
-
The Caps Lock toggle is enabled.
-
The left or right Ctrl key is pressed.
-
The Meta/Control key is pressed.
-
The Num Lock toggle is enabled.
-
The Scroll Lock toggle is enabled.
-
The left or right Shift key is pressed.
-
The left or right Windows logo key is pressed.
- repeat [in]
-
Type: Boolean
Indicates whether the event should repeat.
- locale [in]
-
Type: String
The locale name. This value is returned in the locale attribute of the event.
Return value
Type: HRESULT
If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
Standards information
- Document Object Model (DOM) Level 3 Events Specification, Section 5.2.6
See also

