//Add resource redaction annotation to the document from local diskusing(Annotatorannotator=newAnnotator("input.pdf")){ResourcesRedactionAnnotationresourcesRedaction=newResourcesRedactionAnnotation{Box=newRectangle(100,100,100,100),CreatedOn=DateTime.Now,Message="This is resources redaction annotation",PageNumber=0,Replies=newList<Reply>{newReply{Comment="First comment",RepliedOn=DateTime.Now},newReply{Comment="Second comment",RepliedOn=DateTime.Now}}};annotator.Add(resourcesRedaction);annotator.Save("result.pdf");}
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.