2020.2

Table Of Contents
Name Description
an asterisk * is passed as the Keys
parameter, all keys are retrieved. When
Condition is left empty, all keysets are
retrieved.
"RemoveKeySets" on page193 Deletes all keysets in GroupName that
match Condition. The condition is
specified using basic SQL WHERE
syntax. Condition may be left empty, in
which case all keysets in GroupName
are deleted. The method returns the
number of keysets that were deleted.
Skin/Formats/CrossReferencePrintFormat
("RemoveKeySetByIDDeletes the keyset whose
ID equals ID from GroupName. Returns 1 if
successful, 0 otherwise. This method is
functionally equivalent to using RemoveKeySets
with its Condition parameter set to "ID=ID".
SyntaxRemoveKeySetByID(GroupName: string,
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)
Deletes the keyset whose ID equals ID
from GroupName. Returns 1 if
successful, 0 otherwise.
Note that this method is functionally
equivalent to using "RemoveKeySets"
on page193 with its Condition
parameter set to "ID=ID".
Page 182