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

PdfCommentFilter.Types Property

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

Namespace: DevExpress.Pdf

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

NuGet Package: DevExpress.Pdf.Drawing

Declaration

public ISet<PdfFilterAnnotationType> Types { get; }

Property Value

Type Description
ISet<PdfFilterAnnotationType>

A list of types.

Remarks

The code sample below adds two types to the list to filter the annotations:

PdfCommentFilter filter = pdfViewer.CommentFilter;
filter.Types.Add(PdfFilterAnnotationType.StrikeOut);
filter.Types.Add(PdfFilterAnnotationType.Squiggly);
See Also