GroupDocs.Annotation for .NET 22.3 Release Notes
Leave feedback
On this page
NoteThis page contains release notes for GroupDocs.Annotation for .NET 22.3
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.
Key | Summary | Issue Type |
---|---|---|
ANNOTATIONNET-1961 | Fixed adding replacement annotation as Strikeout to PDF document | Bug |
ANNOTATIONNET-1982 | Implement the ability to add font size for Replacement annotation | Feature |
- 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");
}
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.