StructFind()
Returns the data at the given key, throwing an exception if it does not exist
Usage
OBJECT = StructFind(
struct,
key
)
Argument | Summary |
---|---|
struct | struct1 |
key | key |
Calling
Supports named-parameter calling allowing you to use the function like:
StructFind( struct=?, key=? );
Supports passing parameters as a structure using ArgumentCollection:
StructFind( ArgumentCollection={ struct : ?, key : ? } );