Autodesk Vault ProfessionalVault API

UpdateLabel Method

Autodesk.Connectivity.WebServicesDocumentService

Sets or modifies the name and comment of a label.

Required Permissions

LabelCreate

Syntax

public Label UpdateLabel(
   System.long labelId,
   System.string labelName,
   System.string comment
)
Public Function UpdateLabel( _
   ByVal labelId As System.Long, _
   ByVal labelName As System.String, _
   ByVal comment As System.String _
) As Label

Parameters

NameDescription
labelIdThe ID of the label to update.
labelNameThe new label name.
commentThe new label comment.

Return Value

The Label object with the updated name and comment.

See Also