Back

GetModel

Hello World

Returns the model name of the device.

app.GetModel() → string

Example - Get Device Model

function OnStart()
{
    model = app.GetModel();
    app.ShowPopup( model );
}
    Copy     Copy All       Run