Back
IsTablet
The
IsTablet
method returns true if the app is running on a Tablet and false if not.
app.IsTablet();
Example
function OnStart()
{
tablet = app.IsTablet();
app.ShowPopup( tablet );
}
Copy
Copy All
Run