2022.1

Table Of Contents
Name Description
ID: integer): integer ExamplesIn each of these
examples, the object repoObject is deemed
having been obtained through a call to the COM
object "RepositoryLib.WorkflowRepository" (see
Obtaining an instance of the Repository
Object).JavaScript/* both methods perform the
same task */repoObject.RemoveKeySetByID
("Users", 10);repoObject.RemoveKeySets
("Users", "ID=10");VB Script/* both methods
perform the same task
*/repoObject.RemoveKeySetByID "Users",
10repoObject.RemoveKeySets "Users",
"ID=10"" on page1)
parameter set to "ID=ID".
AddGroup
Creates a group named GroupName and optionally creates keys listed in keyNames. The
keyNames parameter may be empty.
Syntax
AddGroup(GroupName: string, keyNames: JSONStringArray)
Examples
In each of these examples, the object repoObject is deemed having been obtained through a
call to the COM object "RepositoryLib.WorkflowRepository" (see "Obtaining an instance of the
Repository Object" on page176).
JavaScript
repoObject.AddGroup("Users", '["FirstName", "LastName"]');
repoObject.AddGroup("Users", '');
VB Script
repoObject.AddGroup "Users", "[""FirstName"", ""LastName""]"
repoObject.AddGroup "Users", ""
Page 182