Description
Gets values under the key. This method gets all values under the key then puts into an array as the result. FFish Script uses RegValue object to represent the values of the registry key.
Syntax
Regkey.getValues()
Parameters
Returns
An array of RegValue Objects.
Example
r = RegKey.create("HKCU\\Software\\Demo");
values = r.getValues();
for (i = 0; i < values.length; i++)
{
trace("The value of " + values[i].name +
" is " + values[i].data);
}