The team GroupDocs is pleased to notify its users about the regular monthly release 18.6 of the GroupDocs.Annotation for .NET. This latest release added some more annotation types like Point, Polyline and Watermark for Words and Diagrams. We therefore recommend you to download this latest release of the API to enhance your document annotation experience.
Features
Add Watermark, Polyline and Point Annotations in Words and Diagrams
Now users of this API can add Watermark, Polyline and Point Annotations in Words and Diagrams Following example demonstrates how to add Watermark annotation in Diagrams:// Initialize list of AnnotationInfo
List annotations = new List();
// Initialize watermark annotation
AnnotationInfo watermarkAnnnotation = new AnnotationInfo()
{
Box = new Rectangle(165.41f, 192.24f, 177.8f, 38.29f),
CreatedOn = DateTime.Now,
FieldText = "Watermark text",
FontColor = 16711680,
FontFamily = "Microsoft Sans Serif",
FontSize = 17,
Opacity = 0.3,
Type = AnnotationType.Watermark,
};
// Add annotation to list
annotations.Add(watermarkAnnnotation);
Available Channels and Resources
Here are a few channels and resources for you to download, learn, try and get technical support on GroupDocs.Annotation:- Nuget Package – Download
- Documentation – Product Docs
- Examples – Github source code examples
- Video Tutorials – YouTube videos
- API References – Annotation API References
- Product Support Forum – Technical Support Forum for GroupDocs.Annotation for .NET