PdfCommentFilter.Types Property
In This Article
Retrieves a list of types by which to filter the annotations.
Namespace: DevExpress.Pdf
Assembly: DevExpress.Pdf.v24.2.Drawing.dll
NuGet Package: DevExpress.Pdf.Drawing
#Declaration
public ISet<PdfFilterAnnotationType> Types { get; }
#Property Value
Type | Description |
---|---|
ISet<Pdf |
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