Back

GetIPAddress

GetIPAddress returns the current internet IP address of the device. The default value for disabled internet connection "00.00.00.00".

app.GetIPAddress() -> string

Example - Example



function OnStart()
{
    ip = app.GetIPAddress();
    app.ShowPopup( ip );
}
    Copy     Copy All       Run