IsKeyboardSwitchingEnabled Property



 
The IsKeyboardSwitchingEnabled property indicates whether the touchscreen keyboard layout can be switched.


Syntax

    [bool=] SiteKiosk.LocaleManager.IsKeyboardSwitchingEnabled
    
Possible Values
    Boolean value that retrieves the enabled status.

    The property is read only.
Remarks
    None.
Examples
    The following example determines whether the touchscreen keyboard layout can be switched and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.LocaleManager.IsKeyboardSwitchingEnabled);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.6 (and later versions).

Back to top