ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Miscellaneous WINDEV functions
  • Availability of the function
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
InUMCMode (Function)
In french: EnModeMCU
Indicates whether the code is run from a code written in a user macro-code. For example, in the code of a procedure, alllows you to find out whether the procedure was run from a User Macro-Code or not.
Example
// Code run from UMC?
PROCEDURE Check()
...
IF InUMCMode() = True THEN
// Procedure run from UMC
...
ELSE
// Standard case
// Process to perform
...
END
Syntax
<Result> = InUMCMode()
<Result>: Boolean
  • True if the code is run from a User Macro-Code,
  • False otherwise.
WEBDEV - Browser code This parameter always corresponds to False.
Remarks

Availability of the function

InUMCMode can be used in all IDEs to allow for cross-platform code. Functions or procedures that use InUMCMode can be shared between several products without generating any compilation error.
Business / UI classification: Neutral code
Component: wd290vm.dll
Minimum version required
  • Version 12
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help