Glossaria.net

Glossary Visual Basic / Term

scope

scope

The attribute of a variable or procedure that determines which sections of which modules recognize it. There are three levels of scope: public, module, and procedure. Variables that you declare with Public can be accessed by any module, while variables that you declare in a specific module can be used only within that module. Also, variables that you declare in a Sub or Function procedure can be used only in that particular procedure and lose their value between calls unless they are declared Static.

Permanent link scope - Creation date 2020-06-07


< scheduled synchronization Glossary / Visual Basic SDI >