< Day Day Up > |
The Globals module contains functions that provide global information about the runtime environment. Public ReadOnly Property ScriptEngine() As String The ScriptEngine property returns the name of the current language. This will always return the string "VB". Public ReadOnly Property ScriptEngineMajorVersion() As Integer The ScriptEngineMajorVersion property returns the major version of the current language. For example, if the language version is 7.0, the major version is 7. Public ReadOnly Property ScriptEngineMinorVersion() As Integer The ScriptEngineMinorVersion property returns the minor version of the current language. For example, if the language version is 7.0, the minor version is 0. Public ReadOnly Property ScriptEngineBuildVersion() As Integer The ScriptEngineBuildVersion property returns the build version of the current language. |
< Day Day Up > |