Back

IsKeyboardShown

Hello World

Checks if the device keyboard is currently visible or not.

app.IsKeyboardShown() → boolean

See Also: ShowKeyboard, HideKeyboard

Example - Is Keyboard Shown

function OnStart()
{
    var kbShown = app.IsKeyboardShown();
    app.Alert( kbShown, "Is Keyboard Shown:" );
}
    Copy     Copy All       Run