[09]While

Last modified by admin on 2023/10/20 10:28

System.Activities.Statements.While

Description

Allows you to execute a process repeatedly while meeting a specific condition. This activity is useful when you need to execute an activity multiple times.

image-20220513134736-1.png

(* For Mandatory)

In the body of activity

  • Condition (Boolean)*- The specific condition you want to choose for the execution.
    E.g: “counter < 15”
  • Body* - You can add different activities here.

Properties

Misc

  • Display Name (String) - The name of this activity. You can edit the name of the activity to organize and structure your code better.
    E.g: [410342694] While
  • Public (Checkbox) - If you check it, the data of this activity will be shown in the log. Be careful, consider data security before using it.
  • Condition (Boolean)* - The specific condition you want to choose for the execution.
    E.g: “var_counter < 15” – this means the activities inside the Body will be repeated until the counter variable is higher than 15.
  
Navigation