PdfMarkupAnnotationComment.AddReview(String, PdfAnnotationReviewStatus) Method
Adds a review to the comment.
Namespace: DevExpress.Pdf
Assembly: DevExpress.Pdf.v20.2.Core.dll
Declaration
Parameters
Name | Type | Description |
---|---|---|
author | String | The review's author. |
status | PdfAnnotationReviewStatus | Review status. |
Remarks
The code sample below creates two nested comments and adds a review to the second comment (the document is opened in DevExpress WinForms PDF Viewer):
private static void AddAnnotationComments(PdfMarkupAnnotationData annotation)
{
PdfMarkupAnnotationComment comment =
annotation.AddReply("Reviewer", "Done");
comment.Subject = "Proofread";
PdfMarkupAnnotationComment nestedComment =
comment.AddReply(annotation.Author, "Thanks");
nestedComment.Subject = "Reviewed";
}
See Also
Feedback