Back

IsBluetoothOn

The IsBluetoothOn method returns true if Bluetooth is enabled and false if not.

 app.IsBluetoothOn();

Example

function OnStart()
{
  btOn = app.IsBluetoothOn();
  app.ShowPopup( btOn );
}
  Copy   Copy All    Run