getBuildNumber()

ICE Data Services -

getBuildNumber()

 

getBuildNumber()

 

Returns the eSignal Build Number of the system the script is being run on. You can use this function to create scripts that will operate correctly no matter what version of eSignal the user is currently running.

 

Example:

 

if (getBuildNumber() >= 544) {
  //the isReplayMode() function was not available prior to build 544
  if (isReplayMode() == true) {
    debugPrint("Script is in replay mode.\n");
  }
}