Width Property



 
The Width property indicates the width of the keyboard in pixel.


Syntax

    [long=] SiteKiosk.Keyboard.Width
Possible Values
    Long value that retrieves the Width 
    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 Width and shows it in an alert window.

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

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

Back to top