Registry_exists_ext - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Gets whether or not the given name exists in the given key of the registry and returns the result.
Parameters
Parameter | Data Type | Description |
---|---|---|
key | string | the key of the registry name |
name | string | the name of the registry value |
Return Values
boolean: Returns whether the given name exists in the given key.
Example Call
// demonstrates checking if a name exists in a key of the registry
if (registry_exists_ext("")) {
// name does exist
} else {
// name does not exist
}
NOTOC