GetOutOfBoundsCorrection Method
The GetOutOfBoundsCorrection Method returns whether the keyboard is currently correcting its position.
Syntax
SiteKiosk.Keyboard.GetOutOfBoundsCorrection()
|
Parameters
Return Value
Boolean value that specifies whether the keyboard is currently correcting its position.
Remarks
Examples
The following example checks whether the keyboard is currently correcting its position and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
mainwindow = SiteKiosk.WindowList.MainWindow;
alert(SiteKiosk.Keyboard.GetOutOfBoundsCorrection());
</SCRIPT>
|
Applies to
SiteKiosk v7.0 (and later versions).
Back to top