the keys of <Target>
Returns the keys of an array.
An expression which evaluates to an array.
variable tArray as Array put the empty array into tArray put "value1" into tArray["key1"] put "value2" into tArray["key2"] put "value3" into tArray["key3"] variable tKeys as List put the keys of tArray into tKeys sort tKeys in ascending order variable tKeysString as String combine tKeys with "," into tKeysString // tKeysString is "key1,key2,key3"
A list whose elements are the keys of Target.
Note: The resulting list is not necessarily ordered in any way. Use the com.livecode.sort library to sort the keys.