Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

GroupDocs.Annotation for .NET 22.1

Download   Support Forum 

File Details

  • Downloads:
  • 6
  • File Size:
  • 120.0 MB
  • Date Added:
  • 1/31/2022

Release Notes

Description

This contains the MSI installer of GroupDocs.Annotation for .NET

File Details

Export Annotations from XML

Ability to export the annotations of an annotated XML file.

using (Annotator annotator = new Annotator("input.pdf-file")) // specify the path to the input PDF file
{
	annotator.ExportAnnotationsFromXMLFile("input.XML-file"); // specify the path to the input XML file
    annotator.Save("result_export");
}

Import Annotations from Document

Ability to import all annotations from an annotated document.

using (Annotator annotator = new Annotator("input.pdf-file")) // specify the path to the file with the annotated
{

	annotator.ImportAnnotationsFromDocument("result.XML-file"); // specify the path to the result XML file
}

Add Button Component to PDF

Ability to add a button component to PDF documents via PDF Annotator API.

using (Annotator annotator = new Annotator("input.pdf"))
{
	ButtonComponent button = new ButtonComponent
    {
        CreatedOn = DateTime.Now,
        Style = BorderStyle.Dashed,
        Message = "This is button component",
        BorderColor = 1422623,
        PenColor = 14527697,
        ButtonColor = 10832612,
        PageNumber = 0,
        BorderWidth = 12,
        Box = new Rectangle(100, 300, 90, 30),
        Replies = new List<Reply>
            {
                new Reply
                {
                    Comment = "First comment",
                    RepliedOn = DateTime.Now
                },
                new Reply
                {
                    Comment = "Second comment",
                    RepliedOn = DateTime.Now
                }
            }
    };
    annotator.Add(button);
    annotator.Save("result.pdf");
}

For a complete list of features, enhancements, and bug fixes in this release please visit, GroupDocs.Annotation for .NET 22.1 Release Notes.

 English