Back

GetScreenHeight

Get total screen height.

  app.GetScreenHeight( options ) → number: pixel

Example - Example



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

unknown