Skip to main content
A newer version of this page is available. .
All docs
V20.2
.NET Framework 4.5.2+

PdfCommentFilter.Statuses Property

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

Namespace: DevExpress.Pdf

Assembly: DevExpress.Pdf.v20.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