StructFindvalue()
Returns the data (or an array of all the values) that matches the value, throwing an exception if it does not exist
Usage
ARRAY = StructFindvalue(
struct,
value,
returnall
)
| Argument | Summary |
|---|---|
| struct | struct |
| value | value |
| returnall | return - ('ONE' default or 'ALL') [optional] |
Calling
Supports named-parameter calling allowing you to use the function like:
StructFindvalue( struct=?, value=?, returnall=? );
Supports passing parameters as a structure using ArgumentCollection:
StructFindvalue( ArgumentCollection={
struct : ?,
value : ?,
returnall : ?
} );
