Parameters & Returns
Parameters
This function takes no parameters.
Returns
Quick Summary
Closes a While loop
Technical Exegesis...
Closes a While loop. Marks the end of a While loop block. When reached, execution jumps back to the While statement where the condition is re-evaluated. If the condition is still true, the loop continues. If false, execution continues with the code after Wend. Required to properly terminate every While loop.