Full Property
The Full property indicates whether the touch screen keyboard is maximized or not.
Syntax
SiteKiosk.Keyboard.Full [=bool]
|
Possible Values
Boolean value that specifies or retrieves the full status of the touch screen keyboard.
|
The property is read/write.
Remarks
In order to be able to use this property, you must have configured a touch screen keyboard.
Examples
The following example reads the full status and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Keyboard.Full);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top