Do While
A looping activity that executes contained activities at least once, until a condition is no longer true.
#
Designer PropertiesCondition The condition checked at the end of the loop to determine whether the loop is executed again. Body The child activity to be executed with every iteration.
#
Properties#
General PropertiesSee General Properties.
#
MiscSee Misc.
#
Out ErrorSee Out Error.
#
ExampleIn this example, we log in the output window the numbers from 0 to 4. As you may notice from the example, even if there is a condition on index > 0 and initial value of the index is 0, the value is still printed. This is because the condition is checked after the "Write Line" activity is executed.