Hi,
Can someone explain to me how I go about assigning values to metadata in C#? Ive read on here that i should use 'GetCategoryTemplate' or 'GetAttributeGroupTemplate' which will populate the properties, and this works fine, but how do i then go about assigning a value to those particular properties?? What we are trying to achieve is set the values on a metadata attribute group.
What we have so far is this:
Dim metaData As New DocumentManagementWS.Metadata()metaData.AttributeGroups = parentNode.Metadata.AttributeGroups.Clone
metaData.AttributeGroups.SetValue(documentManagementService.GetAttributeGroupTemplate(dmAuth, parentNode.Metadata.AttributeGroups(0).Type, parentNode.Metadata.AttributeGroups(0).Key), 0)
metaData.AttributeGroups(0).Values.SetValue(propertyValue, 0)
Any suggestions would be greatly appreciated.
Cheers
Blaire