Aqualogic Interaction API  
 

IPTProperty.UpdateValues Method 

Property values can be updated "in bulk." For instance, suppose that each Plumtree object contained a Department Property, which recorded the department in the company that was responsible for maintaining the object. If a department changed names, it would be awkward to change every object associated with the department, and change the name in the object. Instead, UpdateValues can be used to replace all instances of the old department name with the new department name in a single API call. To change data in bulk, call the UpdateValues function with a 2D array of data. The columns in the array are described by the PT_EDIT_BULK_PROPDATA_COLUMNS constants. Create one row for each value that should be updated.

void UpdateValues(
   object[][] propertyValueInfo
);

Parameters

propertyValueInfo
a 2D array describing the values to be changed. The columns in the array are described by the PT_EDIT_BULK_PROPDATA_COLUMNS constants.

See Also

IPTProperty Interface | com.plumtree.server Namespace | PT_EDIT_BULK_PROPDATA_COLUMNS