CitectVBA Programming Reference > Understanding CitectVBA Language Basics > Control Structures > While statement

While statement

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

While <condition>
<statement/s>
Wend

See Also

Control Structures