Versions Compared

Key

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

...

...

...

...

...

...

...

...

...

...

Activities

Image Added


Do While

This activity executes the activity contained in its body at least once, until the specified condition evaluates to false.

Activity Parameters

The Do While activity has only one parameter and it can be provided by manually inserted values or via IN arguments or variables:

...

The Sequence activity has no paramaters except the its DisplayName which can be customized for easier usability.


Switch

This activity selects one choice from a number of activities to execute, based on the value of a given expression.

Activity Parameters

The Switch activity has only one parameter and it can be provided by manually inserted values or via IN arguments or variables:

...

This activity repeatedly executes a contained activity while a condition evaluates to true. The difference between While and Do While is that the Do While activity first executes the activities and then evaluates the condition, whereas While first evaluates the condition and only runs the child activities if the result is true.

...