This is a looping construct that allows for execution of actions/statements as long as the While condition is True.
'While' Properties:
DisplayName: The Display name which is the name of the action box.
Condition: The condition which is a Visual Basic Boolean Expression.
Example pseudo-code:
j=0 While j<5
print ("Hello World\n")
j=j+1; end While
Output: Hello World
Hello World
Hello World
Hello World
Hello World
NONE