Visible Property
The Visible property indicates whether the touch screen keyboard is visible or not.
Syntax
SiteKiosk.Keyboard.Visible [=bool]
|
Possible Values
Boolean value that specifies or retrieves the visibility 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 visibility status and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Keyboard.Visible);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top