App.Environ.*

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Core Language > BuiltIn Functions > Application functions > App > Environ >

App.Environ.*

 

Description

 

Retrieve information from the current program's environment table.

 

Syntax

 

sValue = APP.Environ.*

 

Returns

 

Number

 

Parameters

 

Name

Type

Optional

Meaning

*

String

No

Substitute * with any existing computer environment name.
 
Type SET into any Windows Command Prompt to see a list of available environment variables

 

Remarks

 

Restrictions

 

See also

 

Examples

 

uses "console"
 
printl "Environ User:"app.environ.UserName
printl "Environ UserDomain:"app.environ.UserDomain
printl "Environ Path:"app.environ.Path
 
WaitKey