Used to find out whether the application is started in "simulator test mode" from WINDEV Mobile.
IF InSimulatorMode() = True THEN
Info("You will notice differences with the real mode")
END
Syntax
<Result> = InSimulatorMode()
<Result>: Boolean
- True if the application is run in simulator GO mode from WINDEV Mobile.
- False otherwise.
Remarks
Availability of the function
InSimulatorMode can be used in all IDEs to allow for cross-platform code. Functions or procedures that use InSimulatorMode can be shared between several products without generating any compilation error.
Business / UI classification: Neutral code