System.readRegValue

Function/Meaning

[Windows +] Loading the registry

Type
Systemclassmethod of
Syntax
readRegValue(key)
Arguments
key

Specifies the registry key to load.

Return value

If the execution succeeds, the registry value is returned, and if it fails, void is returned.

Explanation

Reads the Windows registry specified by key.
The registry key can start with the following root key name:
HKEYCLASSESROOTHKEYCURRENTCONFIGHKEYCURRENTUSERHKEYLOCALMACHINEHKEYUSERSHKEYPERFORMANCEDATA HKEYDYNDATA
For example, you can specify the following string for key.
HKEY
LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Uninstall \ hoeg \ installdir
Only numbers and single strings can be read.
If it is a number, it returns an integer type result, and if it is a character string, it returns a character string type result.