access

Whether a symbol is visible outside the module that declares it.

Declaración

Sintaxis

access = Public | Private

Values

Value

Meaning

Public

visible to anything that uses the module.

Private

visible only inside the module.

Valores devueltos

None. An enumeration value is not evaluated.

Descripción

This is the public and private attribute. It applies to the symbol, not to the type: a private component of a public type is a Variable with access=Private inside a Struct with access=Public.

Ver también

Variable, Function, Module, Struct