While
February 23, 2018
|By Shashank Mishra
Created On
byShashank Mishra
< Back
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 ("Brexit is a mess\n") j=j+1; end While Output: Brexit is a mess Brexit is a mess Brexit is a mess Brexit is a mess Brexit is a mess
Table of Contents