...
Excerpt |
---|
Sets workflows to the space according to a given markup. Markup Information - For more information about the markup, see Comala Workflow Authoring Guide. Returns true if successful, and false in all other cases. |
Parameters
Parameter name | Type | Required | Description |
---|---|---|---|
spaceKey | number | Yes | The selected Selected space to retrieve the workflow of. |
workflowMarkup | string | Yes | Comala Workflows markup. |
Return type
Boolean
Returns true if successful, and false otherwise.
Example
Code Block | ||||
---|---|---|---|---|
| ||||
string workflowMarkup = readFromTextFile("C:/workflowMarkup.txt"); return comalaLoadWorkflowToSpace("TST", workflowMarkup); |
...