Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Info
titleAvailability

This routine is available starting with SIL Engine 4.8.0.4.

Syntax

getWorkflowTransition(workflowName, transtionName)

Description

Excerpt

Update one ore more attributes for the provided filter. Retrieves transition information for a single workflow transition.

Parameters

filterName filter.

Parameter name

Type

Required

Description

workflowName

string

Yes

The name of the workflow.

transtionNamestringYesThe name of the transition. (Example: Start Progress)

Return type

boolean

Returns true if the filter was updated. False otherwise.

Example

...

JWorkflowAction[]

Returns an array of transition objects for a transition of a given name.

Example

Code Block
string workflowName = "Software Simplified Workflow for Project TEST";
string transtionName = "Create";
JWorkflowAction[] actions = getWorkflowTransition(workflowName, transtionName);
return actions;