Loop (container)
内部に配置したコマンドを繰り返すコンテナです。繰り返し方法を選択できます:固定回数、リストの各項目、while 条件、または Exit Loop まで連続実行。
ループLoopコンテナ
概要
内部に配置したコマンドを繰り返すコンテナです。繰り返し方法を選択できます:固定回数、リストの各項目、while 条件、または Exit Loop まで連続実行。
A container that repeats the commands placed inside it. Pick how it iterates: a fixed count, each item of a list, a while-condition, or continuously until Exit Loop.
パラメータ
| パラメータ | 型 | 必須 | 既定値 | 説明 |
|---|---|---|---|---|
| Loop type | dropdownN times · For each · While · Continuous | 必須 | N times | |
| Iterations (N times) | number | 任意 | 3 | How many times to repeat. 例: 5 変数に対応 |
| Index variable | variable | 任意 | Loop.Current | 1-based iteration number. |
| List variable | variable | 任意 | The list to iterate over. 例: myList | |
| Current item variable | variable | 任意 | Loop.CurrentItem | Receives the current item each iteration. |
| Condition: first value | string | 任意 | Loop continues while this holds. 例: {{{count}}} 変数に対応 | |
| Condition | dropdownis equal to · is not equal to · is greater than · is less than · is greater than or equal to · is less than or equal to · contains · does not contain · is empty · is not empty | 任意 | is less than | |
| Condition: second value | string | 任意 | 例: 10 変数に対応 |