getBuildNumber() |
Top Previous 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
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" ); }
}
|