Back

GetScreenHeight

GetScreenHeight returns the height of the device screen in pixels.

app.GetScreenHeight( options ) -> number - pixel

Example - Example



function OnStart()
{
    height = app.GetScreenHeight();
    app.ShowPopup( height );
}
    Copy     Copy All       Run      

unknown