Watch.GetVariable
Returns the string value of the corresponding variable name. Note that if an undeclared variable is called using this method, an error will be generated.
Syntax
Watch.GetVariable(Name: String): String
Example
JavaScript
var s; s = Watch.GetVariable("MyVariable"); Watch.Log("MyVariable's value is: " + s, 2); s = Watch.GetVariable("global.MyVariable"); Watch.Log("Jobinfo 3's value is: " + s, 2);
VBScript
Dim s s = Watch.GetVariable("MyVariable") Watch.Log "MyVariable's value is: " + s, 2 s = Watch.GetVariable("global.MyVariable") Watch.Log "global.MyVariable's value is: " + s, 2
Python
s = Watch.GetVariable("MyVariable") Watch.Log("global.MyVariable's value is: " + s, 2)
Perl
$s = $Watch->GetJobInfo(3); $Watch->ShowMessage("global.MyVariable's value is: " . $s, 2);