struct.valueArray()

Returns an Array with the values of the Struct

Introduced: 5.3.8.117

struct.valueArray( )

Returns: Array

This function does not take any arguments.

Examples

myStruct= {
		cow: "moo",
		pig: "oink",
		cat: "meow",
		bird: "chirp"
	};
 	writedump(myStruct.ValueArray())

See also