Docked Property



 
The Docked property indicates whether the touch screen keyboard is docked or not.


Syntax

    [bool=] SiteKiosk.Keyboard.Docked
Possible Values
    Boolean value that retrieves the docked status of
    the touch screen keyboard.

    The property is read only.
Remarks
    In order to be able to use this property, you must have configured a touch screen keyboard.
Examples
    The following example reads the docked status and shows it in an alert window.

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

Applies to
    SiteKiosk v5.0 (and later versions).

Back to top