Skip to main content
All docs
V23.2

PdfCommentFilter.Statuses Property

Retrieves a list of statuses by which to filter the annotations.

Namespace: DevExpress.Pdf

Assembly: DevExpress.Pdf.v23.2.Drawing.dll

NuGet Package: DevExpress.Pdf.Drawing

Declaration

public ISet<PdfAnnotationReviewStatus> Statuses { get; }

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