AssignmentStatement Class
From The Oxygene Language Wiki
This is a Language topic
Feel free to add your notes to this topic below.
[Serializable] AssignmentStatement = public class (Statement)
AssignmentStatement is a simple variable or field assignment, or a standalone statement, like a method call. To set property values, use the ProcValue Class and call the set_{Insert Your Property Name} method.
Namespace: Cirrus Statements
Members
| | |
|---|---|
| constructor(aSource: Value) | Constructor for this class; the compiler will evaluate the value in source but does not assign it to anything, effectively the same as using the StandaloneStatement Class. |
| constructor(aDest, aSource: Value) | Constructor for this class; the compiler will evaluate aSource and assign it to aDest. |
| constructor | Constructor that does not initialize any fields. |
Properties
| | |
|---|---|
| Dest: Value | Destination of the assignment. |
| Source: Value | Source of the assignment or the standalone value. |
See Also
- Cirrus
- External Links:
- Prism Aspects to Help with Monobjc Development (RemObjects Blogs)
- Statement Class
- StandaloneStatement Class
Area: Oxygene Language
Compiler version: Oxygene 5
Language Glossary — Keywords — Types — FAQ — How To