SetPropertiesMultiple
If the object is currently checked in, a new checked-in version is created. If the object is currently checked out, the changes are applied to the checked-out version.
Syntax
// Assumes shellUI has been initialized with IShellUI instance
const results = await shellUI.Vault.ObjectOperations.SetPropertiesMultiple({
properties: [] /* Array of SetPropertiesParams */,
});
Message
Name | Description | Type |
---|---|---|
properties | Parameters as JSON array (one set of parameters per object). | SetPropertiesParams[] |
Return type
Name | Description | Type |
---|---|---|
results | Results as JSON array. | ExtObjectInfo[] |
Example
{
"results": [] /* Array of ExtObjectInfo */
}