getBuildNumber()
Previous Top Next
getBuildNumber()
Returns the eSignal Build Number of the system in which the script is being run. It can be used to alter script behavior depending upon the version of eSignal that the user is running.
Parameters
Usage
Previous Top Next
getBuildNumber()
Returns the eSignal Build Number of the system in which the script is being run. It can be used to alter script behavior depending upon the version of eSignal that the user is running.
Parameters
none |
function takes no parameters |
Usage
function main() { ... ... if ( isLastBarOnChart() == true ) { //clear the Formula Output Window debugClear(); //print a line of text to that window debugPrint( "Your eSignal Build Number is: " + getBuildNumber() + "\n" ); } }