DisplayName Property
The DisplayName property contains the name of the layout.
Syntax
[str=] SiteKiosk.LocaleManager.KeyboardLayouts.Item(index).DisplayName
|
Possible Values
String that retrieves the name.
|
The property is read only.
Remarks
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