Floating Property



 
The Floating property indicates whether the touch screen keyboard is floating or not.


Syntax

    [bool=] SiteKiosk.Keyboard.Floating
Possible Values
    Boolean value that retrieves the floating 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 floating status and shows it in an alert window.

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

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

Back to top