Back
GetScreenHeight
The
GetScreenHeight
method gets the height of the phone/tablet screen in pixels.
app.GetScreenHeight();
Example
function OnStart()
{
height = app.GetScreenHeight();
app.ShowPopup( height );
}
Copy
Copy All
Run