Hi.
I wrote this code to set category's attributes of an existing node:
---------------------------------------------------------------------------------------------------------------
public void SetCategoryData(string nodePath, string categoryName, string categoryAttributeName, object categoryAttributeValue)
{
string[] aFullPath = nodePath.Split("\\".ToCharArray());
DocManSvc.Node nodeToEdit = this.prxDocmanSvc.GetNodeByPath(ref prxDocManAuthSvc, this.rootNd.ID, aFullPath);
if (nodeToEdit == null) throw new Exception("Node [" + path + "] doesn't exist");
//code to set category's attributes value
//????
}
---------------------------------------------------------------------------------------------------------------
But I' don't find a way to set those values. I'm looking for a method like "nodeToEdit .SetCategoryAttribute".
Please, can you help me?
Thanks