Annotation - Multiple Users

When there are multiple users annotating a document, is there a way to prevent users from deleting other users comments? Currently, it appears that one user can delete any other users comments, which is does not provide much control. Is there a way to lock the comments down so that only the user who added the comment can edit or delete it?



Please let me know. Thanks in advance for your help.

Hello,


Thank you for your request. In the “AddCollaborator” method we have such option nnotationReviewerRights, via this option you can set the user rights.

For example:
// add user to the document collaborator list
var svc = ObjectFactory.GetInstance();
svc.AddCollaborator(docPath, un, null, null, null, AnnotationReviewerRights.CanAnnotate);

Best regards.