Search
VirtualKeyboard.inputLocale Property
See Also
 






Gets or sets the current input language.

Namespace: MindFusion.Keyboard
File: VirtualKeyboard.js

 Syntax

JavaScript  Copy Code

get inputLocale() {}
set inputLocale(value) {}

 Property Value

String

A string specifying keyboard's locale.

 Remarks

The string provided as parameter identifies the language using its international abbreviation e.g. "en", "de", "es" etc. Check the Keyboard Language topic for a list of the supported languages and their format strings.

 Example

The following code sets the input language of JsKeyboard to French:

JavaScript  Copy Code
vk.inputLocale = "fr";

 See Also