GetOutOfBoundsCorrection Method



 
The GetOutOfBoundsCorrection Method returns whether the keyboard is currently correcting its position.


Syntax

    SiteKiosk.Keyboard.GetOutOfBoundsCorrection()
Parameters
    None
Return Value
    Boolean value that specifies whether the keyboard is currently correcting its position.
Remarks
    None.
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