2019.2

Table Of Contents
Key Methods
Name Description
"AddKey" on page183 Adds key KeyName to group GroupName. KeyName must
not already exist in the specified group. Note that this
method only adds a key name to the group, not a key value.
See "AddValue" on page185 for information on how to set a
value for a key.
"ListKeys" on page190 Retrieves the list of all Key names and data types in Group
GroupName, stored in a JSONStringObject. You should use
JSON.Parse() to convert the string into an actual JavaScript
object. You can then use the for…in construct to list the
different properties for that object (i.e. the keys in the group).
"RemoveKey" on page192 Removes existing key KeyName from group GroupName.
The key to remove must exist in the group, otherwise an
error is raised. All values for the key, in all keysets for the
group, are removed. Note that when the Group contains a
large number of KeySets, this operation may take a while.
"RenameKey" on page194
Renames key oldName to newName in group GroupName.
While this operation has no impact on the data stored in that
Group, it does require any plugin and/or script that uses
oldName to be modified to refer to newName.
Value Methods
Name Description
"AddValue" on page185 Creates a new KeySet by assigning Value to the key
KeyName in Group GroupName. Note that KeyName
must exist in GroupName, otherwise an error is raised.
See "AddKey" on page183 for information on adding a key
to a group. Upon successful completion, the method returns
Page 180