access

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

Declaration

Sintaxe

access = Public | Private

Values

Value

Meaning

Public

visible to anything that uses the module.

Private

visible only inside the module.

Valores de retorno

None. An enumeration value is not evaluated.

Descrição

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.

Veja Também

Variable, Function, Module, Struct