Search
KeyboardState.Alt Field
See Also
 






A boolean value specifying state of Alt modifier.

Namespace: MindFusion.Keyboard
File: KeyboardState.js

 Syntax

JavaScript  Copy Code

var Alt

 Remarks

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

 Example

JavaScript  Copy Code

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

KeyboardState.Alt = true;

 See Also