ShortName Property
The ShortName property contains the short name of the layout.
Syntax
[str=] SiteKiosk.LocaleManager.KeyboardLayouts.Item(index).ShortName
|
Possible Values
String that retrieves the short name.
|
The property is read only.
Remarks
Examples
The following example displays the short name of the first available keyboard layout.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.LocaleManager.KeyboardLayouts.Item(1).ShortName);
</SCRIPT>
|
Applies to
SiteKiosk v6.6 (and later versions).
Back to top