8.5
Table Of Contents
- Table of Contents
- Welcome to PlanetPress Workflow 8.5
- System Requirements
- Basics
- Features
- The Nature of PlanetPress Workflow
- About Branches and Conditions
- Configuration Components
- Connect Resources
- About Data
- About Documents
- Debugging and Error Handling
- The Plug-in Bar
- About Printing
- About Processes and Subprocesses
- Using Scripts
- Special Workflow Types
- About Tasks
- Task Properties
- Variable Properties
- Working With Variables
- About Configurations
- About Related Programs and Services
- The Interface
- Copyright Information
- Legal Notices and Acknowledgements
RepoObject.AddGroup("MyGroup","['FirstKey', 'SecondKey']");
Many methods require using the JSONStringArray type but JSON is not natively supported in VB Script.
Therefore, for those methods, only JavaScript sample code is provided. There are many resources on the
Web that propose ways of implementing JSON parsing in VB Script so you can implement whichever you
see fit. However, using JavaScript is highly recommended.
Group methods
Name Description
AddGroup
Creates a group named GroupName and optionally creates keys
listed in keyNames. The keyNames parameter may be empty.
RemoveGroup
Deletes the group named GroupName, along with all its keysets
and keys.
ListGroups
Retrieves the list of all group names in the Repository, stored in a
JSONStringArray..
RenameGroup
Renames group oldName to newName. While this operation has no
impact on the data stored in the specified group, it does require any
plugin and/or script that uses oldName to be modified to refer to
newName.
Key Methods
Name Description
AddKey
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() for
information on how to set a value for a key.
RemoveKey
Removes existing key KeyName from group GroupName. The key
to remove must exist in the group, otherwise an error is raised. All