KeyboardLayouts Collection
The KeyboardLayouts collection contains the available keyboard layouts.
Members Table
The following table lists the members provided by the KeyboardLayouts collection.
| |
| Properties |
Description |
| Count |
The number of available layouts. |
| |
| Methods |
Description |
| Item |
Returns one item of the collection. |
| |
Remarks
This collection is available through the object LocaleManager.
Use the KeyboardLayouts collection to receive information about all available keyboard layouts.
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