PDF Annotations and Forms in .NET: A Complete Guide
Aspose.PDF FOSS for .NET ships with a rich set of annotation and form-field APIs that let you mark up, link, and interact with PDF documents entirely in managed code — no license key required. Annotations at a glance The library’s AnnotationCollection class provides typed helper methods for every standard PDF annotation. Adding a sticky note is a single call: page.Annotations.AddTextAnnotation( new Rectangle(72, 720, 200, 740), contents: "Review needed", title: "Editor", open: true); Link annotations combine a clickable rectangle with a PdfAction: ...