Globals.Build
Globals.Build returns the current build of Deacom as a string.
This is used by Technical Solutions in situations where processes change in Deacom scripting to make sure we get the correct result. An example of this in action can be found at Event.Form.Controls(FID).
Note: Globals are not available to Grid and External scripts until 17.02. Please check the scripting tree in the script window in Deacom to make sure Globals are available.
Applies To
Properties and Methods
None
Available
The .Build property is available in:
- 15.03.016
- All newer builds
Note: The .Build property and all sub-classes, properties, and methods are only available in Form Layout scripts.
Type
String
Syntax
Globals.Build;
Parameters
None
Example
//--Assume the build is 17.01.030…
let lcBuild = Globals.Build;
Event.Form.MessageBox(`The current build of Deacom is ${lcBuild}`);
/*
Expected Prompt result:
The current build of Deacom is 17.01.030
*/