Control Flow - For#
The For task allows the user to define an index based iteration.
Info
Only available for Control Flow.
Inputs#
| Name | Data Type | IsTrigger | Description |
|---|---|---|---|
<custom list> | <custom> | No | Inputs of the task |
Outputs#
| Name | Data Type | Description |
|---|---|---|
<custom list> | <custom> | Outputs of the function |
| Success | Boolean | If there was no problem emits a true |
| Error | Error | Error that occurred during the processing of this task |
Settings#
On the General Tab, you have the usual settings and the following settings:
| Name | Data Type | Default | Description |
|---|---|---|---|
| Iterator Name | String | The name of the iterator variable. | |
| Start | Integer | The start index may be an index or an expression that in runtime will resolve to a number | |
| End | Integer | The end index may be an index or an expression that in runtime will resolve to a number | |
| Increase By | String | Value that will signal the iterator size of iteration. If the iterator has a + it will increment, if it has a - it will decrement. |
Behavior#
The user will define a set of control flow logic that will be iterated according to the definition of the For task. The iterator value will be available to use inside the looped branch.
Remarks#
There is no particular remark to be made.
