Checks if the user device is a tablet.
Example - Check Tablet
function OnStart()
{
tablet = app.IsTablet();
app.ShowPopup( tablet, "Is Tablet:" );
}
from native import app
def OnStart():
tablet = app.IsTablet()
app.ShowPopup(str(tablet), "Is Tablet:")