[10]Do While

Last modified by Tuan Nguyen on 2023/09/25 16:28

System.Activities.Statements.DoWhile

Description

This activity allows you to create a loop that execute a series of activities the condition is met. The series of activities will be run first, before the condition got evaluate. The activities in the Body will be executed repeatedly until the condition no longer met.

Core_DoWhile

(* for Mandatory)

In the body of the activity

  • Body (box) - You can add different activities here.
  • Condition (Boolean)* - The specific condition to be evaluated after the first execution of the activities in the body and before the next loop.
    E.g: “var_input < 15”

Properties

Misc

  • Condition (Boolean)* - The specific condition to be evaluated after the first execution of the activities in the body and before the next loop.
    E.g: “var_input < 15”
  • 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: [402352067] Do 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.
  
Navigation