getKeys()

The dictionary.getKeys() function returns an array of strings, each of which is a key in the dictionary.

If the caseSensitive dictionary property is set to NO, each returned key is in lower case; otherwise, each returned key is in the case in which the key was stored.

If the ordering dictionary property is set to none, you cannot rely on the order of the returned keys; otherwise, the order is specified in the description of that property (see Dictionary properties).

Syntax

  dictionaryName.getKeys ( ) 
  returns (keys STRING[ ])
dictionaryName
The name of a variable based on a Dictionary part.
keys
All the keys in the dictionary, as an array.

Feedback