GETENV
(Function)

Obtains the environment setting values of the system.

GETENV (<Table number>, <Element number>)

This statement obtains the environment setting values of the system designated with <Table number> and <Element number>. For the items of the environment setting values, refer to 22.3 "Environment Setting Values".

DIM li1 As Integer
|
|
li1 = GETENV (9, 1)
|
'Assigns the contents of the environment setting values of
'number 9 and 1 to li1.
|