Checks if the mobile Wifi Access Point is enabled on the user device.
app.IsWifiApEnabled() → Boolean
See Also: SetWifiApEnabled
Example - Check WifiAccessPoint Enabled
function OnStart()
{
var wapEnabled = app.IsWifiApEnabled();
app.Alert( wapEnabled, "Wifi Access Point Enabled:" );
}