Workflow setGlobal

From Catglobe Wiki
Revision as of 04:16, 31 December 2024 by Administrator (talk | contribs) (Workflow_setGlobal)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Workflow_setGlobal

Set values for scripts invoked from WorkflowScript_class

Syntax

Workflow_setGlobal(string parameterName, AnyType value)

Return type

Empty

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");
*/