The AccessSpecificatorKind enumeration contains the list of access modifiers available in the Fore language.
It is used by the following properties and methods:
| Value | Brief description |
| 0 | Private_. The structure is available only where it is declared. |
| 1 | Protected_. The structure is available within class/interface and in all classes/interfaces derived from the current one. |
| 2 | Public_. The structure is available anywhere in the current code in all assembly units/forms and also where the current assembly is connected by link. |
| 3 | Friend_. The structure is available anywhere in the code of the current assembly. Structures with the Friend modifier will be unavailable in external assemblies. |
| 4 | ProtectedFriend. The structure is available in the current assembly and also from the class/interface derived from the current one but located in another assembly. |
See also: