Visibility Enum
From The Oxygene Language Wiki
This is a Language topic
Feel free to add your notes to this topic below.
Visibility is used by members and types to define from where a member can be used.
Namespace: Cirrus
Enum Values
| | |
|---|---|
| Assembly | Assembly members are only accessible from within the same assembly |
| AssemblyAndProtected | Assembly members are only accessible from within the same assembly and then only within the same class or sub classes |
| AssemblyOrProtected | Assembly members are only accessible from within the same assembly or subclasses |
| Private | The member is private, only accessible from within the same class or nested classes |
| Protected | The member is protected, it's only accessible from within the same class or sub classes |
| Public | The member is public, accessible from everywhere |
See Also
- Cirrus
- External Links:
- Prism Aspects to Help with Monobjc Development (RemObjects Blogs)
Area: Oxygene Language
Compiler version: Oxygene 5
Language Glossary — Keywords — Types — FAQ — How To