CitectVBA Programming Reference > CitectVBA Function Reference > Conditional Statements > While...Wend

While...Wend

The While...Wendloop conditional statement is similar to the Do Whileloop statement. The condition is checked before executing the block of statements comprising the loop.

Example

While <condition>
<statement/s>
Wend