StructFindkey()
Returns the data (or an array of all the values) at the given key, throwing an exception if it does not exist
Usage
ARRAY = StructFindkey(
struct,
key,
returnall
)
| Argument | Summary |
|---|---|
| struct | struct or array |
| key | key |
| returnall | returnallflag - default to false; returns all the keys found [optional] |
Calling
Supports named-parameter calling allowing you to use the function like:
StructFindkey( struct=?, key=?, returnall=? );
Supports passing parameters as a structure using ArgumentCollection:
StructFindkey( ArgumentCollection={
struct : ?,
key : ?,
returnall : ?
} );
