Autodesk Vault ProfessionalVault API

UpdateItemPropertyDefinitions Method

Autodesk.Connectivity.WebServicesItemService

Updates the property definitions associated with a set of Items.

Required Permissions

ItemAddRemoveUserDefinedProperty

Syntax

public Item[] UpdateItemPropertyDefinitions(
   System.long[] masterIds,
   System.long[] addedPropDefIds,
   System.long[] removedPropDefIds,
   System.string comment
)
Public Function UpdateItemPropertyDefinitions( _
   ByVal masterIds() As System.Long, _
   ByVal addedPropDefIds() As System.Long, _
   ByVal removedPropDefIds() As System.Long, _
   ByVal comment As System.String _
) As Item()

Parameters

NameDescription
masterIdsThe Items to edit.
addedPropDefIdsUser defined property definitions to associate with all Items listed in "masterIds" parameter. Pass in null if there are no new associations.
removedPropDefIdsUser defined property definitions to un-associate with all Items listed in "masterIds" parameter. Pass in null if there are no associations to remove.
commentThe comment for the new version of the Item.

Return Value

The update Item objects.

See Also