RepeatStatement Class
From The Oxygene Language Wiki
This is a Language topic
Feel free to add your notes to this topic below.
[Serializable] RepeatStatement = public class(Statement)
RepeatStatement is a class that can hold a repeat/until statement. It will always execute the body of the loop at least once, then it checks the condition, if it's true it will break out of the loop, else it will execute the body again until the condition is true.
Namespace: Cirrus Statements
Members
| | |
|---|---|
| constructor(aValue: Value; aStatement: Statement) | Create a new empty instance of this class |
| constructor | Create a new empty instance of this class |
Properties
| | |
|---|---|
| Body: Statement | Body for this method |
| Condition: Value | Until condition for this loop |
See Also
- Cirrus
- External Links:
- Prism Aspects to Help with Monobjc Development (RemObjects Blogs)
- Statement Class
Area: Oxygene Language
Compiler version: Oxygene 5
Language Glossary — Keywords — Types — FAQ — How To