The getIntValue method of the RegKey class contains the following signatures.
getIntValue(String name)
getIntValue(String name, int defval)
Queries an integer value from the registry.
public int getIntValue(String name);
Returns the integer value contained in the subKey.
name | The subKey containing the value wanted. The name must be a subkey of the current key. |
Queries an integer value from the registry. The name is a subkey of the current key. If the named value does not exist in the registry, the default value is returned.
public int getIntValue(String name, int defval);
Returns the integer value contained in the subKey or the default value if the named value does not exist in the registry.
name | The subkey containing the value wanted. |
defval | The default value. |