Click or drag to resize

PdfGeneratedPageAnnotations Property

Gets the list of annotations on this page. This is an empty list by default.

Namespace:  Atalasoft.PdfDoc.Generating
Assembly:  Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public PdfAnnotationList Annotations { get; }

Property Value

Type: PdfAnnotationList
Remarks
Annotations are not typically precluded from appearing on multiple pages, but it not encouraged. BaseWidgetAnnotation objects are forbidden from appearing more than once per document.
Examples
To add an annotation to a page:
BaseAnnotation annot = MakeAnnot();
page.Annotations.Add(annot);
See Also