GroupDocs.Annotation for .NET 22.3 Release Notes

Major Features

Below is the list of most notable changes in release of GroupDocs.Annotation for .NET 22.3:

  • Fixed Replacement annotation is added as a Strikeout annotation in PDF.
  • Added ability to change font size for Replacement annotation.

Full List of Issues Covering all Changes in this Release

KeySummaryIssue Type
ANNOTATIONNET-1961Fixed adding replacement annotation as Strikeout to PDF documentBug
ANNOTATIONNET-1982Implement the ability to add font size for Replacement annotationFeature

Public API and Backward Incompatible Changes

  1. Added ability to change font size for Replacement annotation, you could find full example here
using (Annotator annotator = new Annotator("input.pdf"))
{
    ReplacementAnnotation replacement = new ReplacementAnnotation
    {
	FontSize = 11,
	//other propeties
    };
    annotator.Add(replacement);
    annotator.Save("result.pdf");
}