Environ Function |
Syntax:
Environ[$](Index)
-or-
Environ[$](Name)
Group:
Description:
Returns an environment string.
Parameters:
Parameter |
Description |
Return this environment string's value. If there is no environment string at this index a null string is returned. Indexes start at one. |
|
Return this environment string's value. If the environment string can't be found a null string is returned. |
Example:
Sub Main
Debug.Print Environ("Path")
EndSub