KeyboardLayout Object
The KeyboardLayout object contains information about a keyboard layout.
Members Table
The following table lists the members provided by the KeyboardLayout object.
Remarks
This object is returned by the Item method.
Use the KeyboardLayout object to receive information about an available keyboard layout.
Note that the path of a file using SiteKiosk objects must be allowed in the
SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
if it is not a browser skin file.
Examples
The following example displays the name of the first available keyboard layout.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.LocaleManager.KeyboardLayouts.Item(1).DisplayName);
</SCRIPT>
|
Applies to
SiteKiosk v6.6 (and later versions).
Back to top