PdfCommentFilter.Types Property
Retrieves a list of types 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<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