Search
KeyboardState.Insert Field
See Also
 






A boolean value specifying state of the Insert key.

Namespace: MindFusion.Keyboard
File: KeyboardState.js

 Syntax

JavaScript  Copy Code

var Insert

 Remarks

Set KeyboardState.CapsLock to true and the JsKeyboard will handle key strokes as if the user has pressed (and holds) the Insert key.

 Example

JavaScript  Copy Code

var vk = VirtualKeyboard.create(
  document.getElementById("keyboard"));

KeyboardState.Insert = true;

 See Also