PdfCommentFilter.Statuses Property
Retrieves a list of statuses by which to filter the annotations.
Namespace: DevExpress.Pdf
Assembly: DevExpress.Pdf.v23.1.Drawing.dll
NuGet Package: DevExpress.Pdf.Drawing
Declaration
Property Value
Type | Description |
---|---|
ISet<PdfAnnotationReviewStatus> | A list of statuses. |
Remarks
The code sample below adds two statuses to the list to filter the annotations:
PdfCommentFilter filter = pdfViewer.CommentFilter;
filter.Statuses.Add(PdfAnnotationReviewStatus.Accepted);
filter.Statuses.Add(PdfAnnotationReviewStatus.Completed);
See Also