StructKeylist()

Returns all the keys in the structure as a delimited string

Usage

STRING = StructKeylist( struct, delimeter )
Argument Summary
struct struct1
delimeter delimiter - default comma (,) [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

StructKeylist(
   struct=?, 
   delimeter=?
);

Supports passing parameters as a structure using ArgumentCollection:

StructKeylist( ArgumentCollection={
   struct : ?, 
   delimeter : ?
} );