Difference between revisions of "Workflow getGlobal"

From Catglobe Wiki
Jump to: navigation, search
(Examples)
(Workflow_getGlobal)
 
Line 1: Line 1:
 
== Workflow_getGlobal==
 
== Workflow_getGlobal==
Get values for scripts invoked from workflow class
+
Get values for scripts invoked from [[WorkflowScript_class]]
 +
 
 
==Syntax==
 
==Syntax==
 
Workflow_getGlobal(string parameterName)
 
Workflow_getGlobal(string parameterName)

Latest revision as of 04:16, 31 December 2024

Workflow_getGlobal

Get values for scripts invoked from WorkflowScript_class

Syntax

Workflow_getGlobal(string parameterName)

Return type

AnyType

Examples

Workflow_setGlobal("x", 1000);
//Get global value on dynamic script 
string script = "
	number a = 1;
	return a + Workflow_getGlobal(\"x\");
";
WorkflowScript wfS = new WorkflowScript (script, false);
wfS.Call();//1001
//Get global value on existing wokflow
wfS = new WorkflowScript (wf);
wfS.Call();//1002

/*
script on the above wf:
number a = 2;
return a + Workflow_getGlobal("x");
*/