Back

IsTablet

Returns whether the device is a tablet.

  app.IsTablet() → boolean

Example - Example



function OnStart()
{
    tablet = app.IsTablet();
    app.ShowPopup( tablet );
}
    Copy     Copy All       Run