From 0a5c8df35b7b0d3cb7034c310f7e80045d292ff8 Mon Sep 17 00:00:00 2001 From: Muhammad Muqarrab Date: Wed, 17 Apr 2024 14:46:10 +0500 Subject: [PATCH] Updated unlocking annotation power examples --- .../add-distance-annotation/_index.md | 142 +++++++++++----- .../add-ellipse-annotation/_index.md | 112 ++++++++----- .../add-image-annotation-local-path/_index.md | 93 +++++++---- .../_index.md | 89 ++++++---- .../add-link-annotation/_index.md | 124 ++++++++------ .../add-point-annotation/_index.md | 102 +++++++----- .../add-polyline-annotation/_index.md | 120 +++++++++----- .../_index.md | 114 ++++++++----- .../_index.md | 92 +++++++---- .../add-text-field-annotation/_index.md | 120 +++++++++----- .../add-text-highlight-annotation/_index.md | 116 ++++++++----- .../add-text-redaction-annotation/_index.md | 113 ++++++++----- .../add-text-replacement-annotation/_index.md | 129 +++++++++------ .../add-text-squiggly-annotation/_index.md | 154 +++++++++++++----- .../add-text-strikeout-annotation/_index.md | 114 ++++++++----- .../add-text-underline-annotation/_index.md | 115 ++++++++----- .../add-watermark-annotation/_index.md | 151 ++++++++++++----- 17 files changed, 1296 insertions(+), 704 deletions(-) diff --git a/content/english/net/unlocking-annotation-power/add-distance-annotation/_index.md b/content/english/net/unlocking-annotation-power/add-distance-annotation/_index.md index c6aad12..9d61ffb 100644 --- a/content/english/net/unlocking-annotation-power/add-distance-annotation/_index.md +++ b/content/english/net/unlocking-annotation-power/add-distance-annotation/_index.md @@ -2,13 +2,25 @@ title: Add Distance Annotation to Document linktitle: Add Distance Annotation to Document second_title: GroupDocs.Annotation .NET API -description: +description: Learn how to add distance annotations to documents using GroupDocs.Annotation for .NET. Enhance collaboration and communication effortlessly. type: docs weight: 12 url: /net/unlocking-annotation-power/add-distance-annotation/ --- +## Introduction +In this tutorial, you will learn how to add a distance annotation to a document using GroupDocs.Annotation for .NET. Follow these steps to accomplish the task: +## Prerequisites + +Ensure that you have the following prerequisites in place before proceeding: + +- GroupDocs.Annotation for .NET Library: Download and install the GroupDocs.Annotation for .NET library from [this link](https://releases.groupdocs.com/annotation/net/). +- Document to Annotate: Prepare the document (e.g., PDF) to which you want to add the distance annotation. +- Development Environment: Set up your development environment with Visual Studio or any other IDE of your choice. + +## Import Namespaces + +Before you begin, make sure to include the necessary namespaces in your code. These namespaces are essential for accessing the required classes and methods. -## Complete Source Code ```csharp using System; using System.Collections.Generic; @@ -16,50 +28,98 @@ using System.IO; using GroupDocs.Annotation.Models; using GroupDocs.Annotation.Models.AnnotationModels; using GroupDocs.Annotation.Options; +``` + -namespace GroupDocs.Annotation.Examples.CSharp.BasicUsage.AddAnnotationToTheDocument +## Step 1: Initialize Annotator + +Begin by initializing the `Annotator` object with the path to the document you want to annotate. + +```csharp +using (Annotator annotator = new Annotator("input.pdf")) { - /// - /// This example demonstrates adding distance annotation. - /// - class AddDistanceAnnotation + // Annotation code will go here +} +``` + +## Step 2: Create Distance Annotation + +Now, create a `DistanceAnnotation` object and configure its properties such as box dimensions, message, opacity, pen color, etc. + +```csharp +DistanceAnnotation distance = new DistanceAnnotation +{ + Box = new Rectangle(200, 150, 200, 30), + CreatedOn = DateTime.Now, + Message = "This is distance annotation", + Opacity = 0.7, + PageNumber = 0, + PenColor = 65535, + PenStyle = PenStyle.Dot, + PenWidth = 3, + Replies = new List { - public static void Run() + new Reply + { + Comment = "First comment", + RepliedOn = DateTime.Now + }, + new Reply { - string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); - - using (Annotator annotator = new Annotator("input.pdf")) - { - DistanceAnnotation distance = new DistanceAnnotation - { - Box = new Rectangle(200, 150, 200, 30), - CreatedOn = DateTime.Now, - Message = "This is distance annotation", - Opacity = 0.7, - PageNumber = 0, - PenColor = 65535, - PenStyle = PenStyle.Dot, - PenWidth = 3, - Replies = new List - { - new Reply - { - Comment = "First comment", - RepliedOn = DateTime.Now - }, - new Reply - { - Comment = "Second comment", - RepliedOn = DateTime.Now - } - } - }; - annotator.Add(distance); - annotator.Save(outputPath); - } - Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); + Comment = "Second comment", + RepliedOn = DateTime.Now } } -} +}; +``` + +## Step 3: Add Annotation + +Add the created distance annotation to the document using the `Add` method of the annotator object. +```csharp +annotator.Add(distance); ``` + +## Step 4: Save Document + +Save the annotated document to the desired location on your system. + +```csharp +string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); +annotator.Save(outputPath); +``` + +## Step 5: Display Confirmation + +Finally, display a message confirming the successful saving of the annotated document. + +```csharp +Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); +``` + +## Conclusion + +Adding distance annotations to documents using GroupDocs.Annotation for .NET is a straightforward process. By following the steps outlined in this tutorial, you can enhance your documents with valuable annotations, facilitating better collaboration and communication. + +## FAQ's + +### Q: Can I customize the appearance of the distance annotation? + +A: Yes, you can customize various properties such as color, opacity, line style, etc., to suit your requirements. + +### Q: Does GroupDocs.Annotation support annotations on different types of documents? + +A: Yes, GroupDocs.Annotation supports annotations on a wide range of document formats including PDF, Word, Excel, PowerPoint, and more. + +### Q: Is there a free trial available for GroupDocs.Annotation? + +A: Yes, you can access a free trial of GroupDocs.Annotation from [this link](https://releases.groupdocs.com/). + +### Q: Where can I find the documentation for GroupDocs.Annotation for .NET? + +A: You can refer to the detailed documentation available [here](https://reference.groupdocs.com/annotation/net/). + +### Q: How can I get support or assistance with GroupDocs.Annotation? + +A: You can seek support and assistance from the GroupDocs.Annotation community forum [here](https://forum.groupdocs.com/c/annotation/10). diff --git a/content/english/net/unlocking-annotation-power/add-ellipse-annotation/_index.md b/content/english/net/unlocking-annotation-power/add-ellipse-annotation/_index.md index a6bcf4d..ab0aa98 100644 --- a/content/english/net/unlocking-annotation-power/add-ellipse-annotation/_index.md +++ b/content/english/net/unlocking-annotation-power/add-ellipse-annotation/_index.md @@ -2,13 +2,20 @@ title: Add Ellipse Annotation to Document linktitle: Add Ellipse Annotation to Document second_title: GroupDocs.Annotation .NET API -description: +description: Learn how to add ellipse annotations to documents in .NET using GroupDocs.Annotation. Enhance collaboration and communication effortlessly. type: docs weight: 13 url: /net/unlocking-annotation-power/add-ellipse-annotation/ --- +## Introduction +In this tutorial, you'll learn how to add an ellipse annotation to a document using GroupDocs.Annotation for .NET. This step-by-step guide will walk you through the process, ensuring that you understand each step clearly. +## Prerequisites +Before you begin, make sure you have the following: +1. GroupDocs.Annotation for .NET: Make sure you have downloaded and installed GroupDocs.Annotation for .NET. You can download it from [here](https://releases.groupdocs.com/annotation/net/). +2. IDE (Integrated Development Environment): You'll need an IDE installed on your system, such as Visual Studio, to write and execute the code. -## Complete Source Code +## Import Namespaces +First, import the necessary namespaces to your project: ```csharp using System; using System.Collections.Generic; @@ -16,51 +23,68 @@ using System.IO; using GroupDocs.Annotation.Models; using GroupDocs.Annotation.Models.AnnotationModels; using GroupDocs.Annotation.Options; - -namespace GroupDocs.Annotation.Examples.CSharp.BasicUsage.AddAnnotationToTheDocument +``` +## Step 1: Set Output Path +Define the output path where the annotated document will be saved: +```csharp +string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); +``` +## Step 2: Initialize Annotator +Initialize the annotator by providing the input document path: +```csharp +using (Annotator annotator = new Annotator("input.pdf")) +{ +``` +## Step 3: Create Ellipse Annotation +Create an instance of the `EllipseAnnotation` class and set its properties: +```csharp +EllipseAnnotation ellipse = new EllipseAnnotation { - /// - /// This example demonstrates adding ellipse annotation. - /// - class AddEllipseAnnotation + BackgroundColor = 65535, + Box = new Rectangle(100, 100, 100, 100), + CreatedOn = DateTime.Now, + Message = "This is ellipse annotation", + Opacity = 0.7, + PageNumber = 0, + PenColor = 65535, + PenStyle = PenStyle.Dot, + PenWidth = 3, + Replies = new List { - public static void Run() + new Reply { - string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); - - using (Annotator annotator = new Annotator("input.pdf")) - { - EllipseAnnotation ellipse = new EllipseAnnotation - { - BackgroundColor = 65535, - Box = new Rectangle(100, 100, 100, 100), - CreatedOn = DateTime.Now, - Message = "This is ellipse annotation", - Opacity = 0.7, - PageNumber = 0, - PenColor = 65535, - PenStyle = PenStyle.Dot, - PenWidth = 3, - Replies = new List - { - new Reply - { - Comment = "First comment", - RepliedOn = DateTime.Now - }, - new Reply - { - Comment = "Second comment", - RepliedOn = DateTime.Now - } - } - }; - annotator.Add(ellipse); - annotator.Save(outputPath); - } - Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); + Comment = "First comment", + RepliedOn = DateTime.Now + }, + new Reply + { + Comment = "Second comment", + RepliedOn = DateTime.Now } } -} - +}; +``` +## Step 4: Add Annotation +Add the ellipse annotation to the document: +```csharp +annotator.Add(ellipse); +``` +## Step 5: Save Document +Save the annotated document to the output path: +```csharp +annotator.Save(outputPath); ``` + +## Conclusion +Congratulations! You've successfully added an ellipse annotation to a document using GroupDocs.Annotation for .NET. You can now integrate this functionality into your .NET applications to enhance document collaboration and communication. +## FAQ's +### Can I customize the appearance of the ellipse annotation? +Yes, you can customize various properties such as background color, border color, opacity, etc., according to your requirements. +### Is GroupDocs.Annotation for .NET compatible with all document formats? +GroupDocs.Annotation for .NET supports a wide range of document formats including PDF, DOCX, PPTX, XLSX, and more. +### Can I add multiple annotations to a single document? +Yes, you can add multiple annotations including ellipses, rectangles, text, etc., to a single document. +### Is there a trial version available for testing purposes? +Yes, you can download a free trial version from [here](https://releases.groupdocs.com/) to evaluate its features. +### Where can I get technical support for GroupDocs.Annotation for .NET? +You can get technical support from the GroupDocs.Annotation community forum [here](https://forum.groupdocs.com/c/annotation/10). diff --git a/content/english/net/unlocking-annotation-power/add-image-annotation-local-path/_index.md b/content/english/net/unlocking-annotation-power/add-image-annotation-local-path/_index.md index c37c1ba..31cb495 100644 --- a/content/english/net/unlocking-annotation-power/add-image-annotation-local-path/_index.md +++ b/content/english/net/unlocking-annotation-power/add-image-annotation-local-path/_index.md @@ -2,46 +2,79 @@ title: Add Image Annotation to Document (Local Path) linktitle: Add Image Annotation to Document (Local Path) second_title: GroupDocs.Annotation .NET API -description: +description: Learn how to add image annotations to documents using GroupDocs.Annotation for .NET. Enhance document processing capabilities with ease. type: docs weight: 14 url: /net/unlocking-annotation-power/add-image-annotation-local-path/ --- - -## Complete Source Code +## Introduction +GroupDocs.Annotation for .NET is a powerful library that allows developers to add various types of annotations to documents programmatically. In this tutorial, we will learn how to add image annotations to a document using a local path. +## Prerequisites +Before we begin, make sure you have the following prerequisites: +1. Basic knowledge of C# programming language. +2. Visual Studio installed on your system. +3. GroupDocs.Annotation for .NET library installed or referenced in your project. +4. An input document (e.g., PDF) and an image file for annotation. +## Import Namespaces +First, you need to import the necessary namespaces to your C# file. These namespaces provide access to the classes and methods required for working with GroupDocs.Annotation. ```csharp using System; using System.IO; using GroupDocs.Annotation.Models; using GroupDocs.Annotation.Models.AnnotationModels; +``` -namespace GroupDocs.Annotation.Examples.CSharp.BasicUsage.AddAnnotationToTheDocument +## Step 1: Define Output Path +Define the output path where the annotated document will be saved. +```csharp +string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); +``` +## Step 2: Initialize Annotator +Initialize the annotator by providing the path to the input document. +```csharp +using (Annotator annotator = new Annotator("input.pdf")) { - /// - /// This example demonstrates adding image annotation with local path. - /// - class AddImageAnnotationLocalPath - { - public static void Run() - { - string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); - - using (Annotator annotator = new Annotator("input.pdf")) - { - ImageAnnotation image = new ImageAnnotation - { - Box = new Rectangle(100, 100, 100, 100), - CreatedOn = DateTime.Now, - Opacity = 0.7, - PageNumber = 0, - ImagePath = "image.png" - }; - annotator.Add(image); - annotator.Save(outputPath); - } - Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); - } - } + // Annotation code goes here } - ``` +## Step 3: Create Image Annotation +Create an instance of the `ImageAnnotation` class and specify its properties such as position, opacity, page number, and image path. +```csharp +ImageAnnotation image = new ImageAnnotation +{ + Box = new Rectangle(100, 100, 100, 100), + CreatedOn = DateTime.Now, + Opacity = 0.7, + PageNumber = 0, + ImagePath = "image.png" +}; +``` +## Step 4: Add Annotation +Add the created image annotation to the document using the `Add` method of the annotator. +```csharp +annotator.Add(image); +``` +## Step 5: Save Document +Save the annotated document to the output path. +```csharp +annotator.Save(outputPath); +``` +## Step 6: Display Output Path +Display a message indicating the successful saving of the document and the location of the output file. +```csharp +Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); +``` + +## Conclusion +In this tutorial, we have learned how to add image annotations to a document using GroupDocs.Annotation for .NET. By following these simple steps, you can enhance your document processing capabilities with powerful annotation features. +## FAQ's +### Can I annotate documents other than PDF? +Yes, GroupDocs.Annotation supports various document formats including Word, Excel, PowerPoint, and more. +### Is GroupDocs.Annotation compatible with .NET Core? +Yes, GroupDocs.Annotation is compatible with both .NET Framework and .NET Core. +### Can I customize the appearance of annotations? +Absolutely, you can customize the appearance, size, color, and other properties of annotations according to your requirements. +### Does GroupDocs.Annotation provide support for collaborative annotation? +Yes, GroupDocs.Annotation offers collaborative annotation features that enable multiple users to annotate documents simultaneously. +### Where can I find additional help or support? +You can visit the GroupDocs.Annotation forum for assistance and support from the community. diff --git a/content/english/net/unlocking-annotation-power/add-image-annotation-remote-path/_index.md b/content/english/net/unlocking-annotation-power/add-image-annotation-remote-path/_index.md index 45f7a6a..036526d 100644 --- a/content/english/net/unlocking-annotation-power/add-image-annotation-remote-path/_index.md +++ b/content/english/net/unlocking-annotation-power/add-image-annotation-remote-path/_index.md @@ -2,46 +2,75 @@ title: Add Image Annotation to Document (Remote Path) linktitle: Add Image Annotation to Document (Remote Path) second_title: GroupDocs.Annotation .NET API -description: +description: Learn how to add image annotations to documents using GroupDocs.Annotation for .NET. Enhance document management with powerful annotation capabilities. type: docs weight: 15 url: /net/unlocking-annotation-power/add-image-annotation-remote-path/ --- +## Introduction +In this tutorial, we'll walk through the process of adding image annotations to a document using GroupDocs.Annotation for .NET. This library provides powerful tools for annotating various types of documents programmatically. +## Prerequisites +Before we begin, make sure you have the following: +1. GroupDocs.Annotation for .NET: Download and install the library from [here](https://releases.groupdocs.com/annotation/net/). +2. Development Environment: Ensure you have a working development environment set up for .NET development. +3. Document: Prepare the document you want to annotate. For this tutorial, we'll assume you have a PDF document named `input.pdf`. +4. Image for Annotation: Choose the image you want to use for annotation. Ensure you have the image URL or local path ready. -## Complete Source Code +## Import Namespaces +Before we start coding, let's import the necessary namespaces: ```csharp using System; using System.IO; using GroupDocs.Annotation.Models; using GroupDocs.Annotation.Models.AnnotationModels; - -namespace GroupDocs.Annotation.Examples.CSharp.BasicUsage.AddAnnotationToTheDocument +``` +## Step 1: Set Output Path +First, define the output path where the annotated document will be saved. +```csharp +string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); +``` +## Step 2: Initialize Annotator +Create an instance of the `Annotator` class and specify the input document. +```csharp +using (Annotator annotator = new Annotator("input.pdf")) { - /// - /// This example demonstrates adding image annotation with remote path. - /// - class AddImageAnnotationRemotePath - { - public static void Run() - { - string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); - - using (Annotator annotator = new Annotator("input.pdf")) - { - ImageAnnotation image = new ImageAnnotation - { - Box = new Rectangle(100, 100, 100, 100), - CreatedOn = DateTime.Now, - Opacity = 0.7, - PageNumber = 0, - ImagePath = "https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_92x30dp.png" - }; - annotator.Add(image); - annotator.Save(outputPath); - } - Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); - } - } + // Annotation code will go here } - ``` +## Step 3: Add Image Annotation +Now, let's add the image annotation to the document. We'll specify the properties of the image annotation such as position, opacity, page number, and image path. +```csharp +ImageAnnotation image = new ImageAnnotation +{ + Box = new Rectangle(100, 100, 100, 100), // Specify the position of the annotation + CreatedOn = DateTime.Now, // Set the creation date + Opacity = 0.7, // Set opacity (0 to 1) + PageNumber = 0, // Specify the page number + ImagePath = "https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_92x30dp.png" // Provide the URL of the image +}; +annotator.Add(image); // Add the image annotation +``` +## Step 4: Save Document +Save the annotated document to the specified output path. +```csharp +annotator.Save(outputPath); +``` +## Step 5: Display Output Path +Inform the user about the successful document save operation and display the output path. +```csharp +Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); +``` + +## Conclusion +In this tutorial, we've learned how to add image annotations to a document using GroupDocs.Annotation for .NET. By following these steps, you can enhance your document management applications with powerful annotation capabilities. +## FAQ's +### Can GroupDocs.Annotation be used with other document formats besides PDF? +Yes, GroupDocs.Annotation supports various document formats including Word, Excel, PowerPoint, and more. +### Is GroupDocs.Annotation compatible with .NET Core? +Yes, GroupDocs.Annotation is compatible with both .NET Framework and .NET Core. +### Can I customize the appearance of annotations? +Yes, you can customize the appearance of annotations such as color, opacity, and size. +### Does GroupDocs.Annotation support collaborative annotation features? +Yes, GroupDocs.Annotation offers collaborative annotation features for real-time collaboration on documents. +### Is there a trial version available for testing? +Yes, you can get a free trial of GroupDocs.Annotation from [here](https://releases.groupdocs.com/). diff --git a/content/english/net/unlocking-annotation-power/add-link-annotation/_index.md b/content/english/net/unlocking-annotation-power/add-link-annotation/_index.md index b5c1fe6..9bd1ec3 100644 --- a/content/english/net/unlocking-annotation-power/add-link-annotation/_index.md +++ b/content/english/net/unlocking-annotation-power/add-link-annotation/_index.md @@ -2,13 +2,21 @@ title: Add Link Annotation to Document linktitle: Add Link Annotation to Document second_title: GroupDocs.Annotation .NET API -description: +description: Learn how to add link annotations to documents using Groupdocs.Annotation for .NET. Enhance collaboration and interactivity effortlessly. type: docs weight: 16 url: /net/unlocking-annotation-power/add-link-annotation/ --- +## Introduction +Groupdocs.Annotation for .NET is a powerful library that enables developers to integrate comprehensive annotation functionalities into their .NET applications effortlessly. One of the key features it offers is the ability to add link annotations to documents, enhancing collaboration and interactivity. +## Prerequisites +Before diving into the process of adding link annotations, ensure you have the following prerequisites: +- Basic understanding of C# programming language. +- Installed Groupdocs.Annotation for .NET library. +- Access to a document that you want to annotate. -## Complete Source Code +## Import Namespaces +Firstly, you need to import the necessary namespaces to utilize Groupdocs.Annotation for .NET functionalities. This allows your application to access the classes and methods required for annotating documents. ```csharp using System; using System.Collections.Generic; @@ -16,52 +24,76 @@ using System.IO; using GroupDocs.Annotation.Models; using GroupDocs.Annotation.Models.AnnotationModels; using GroupDocs.Annotation.Options; - -namespace GroupDocs.Annotation.Examples.CSharp.BasicUsage.AddAnnotationToTheDocument +``` +## Step 1: Set Output Path +Define the path where you want to save the annotated document. +```csharp +string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); +``` +## Step 2: Initialize Annotator +Create an instance of the `Annotator` class by providing the path of the document you want to annotate. +```csharp +using (Annotator annotator = new Annotator("input.pdf")) { - /// - /// This example demonstrates adding link annotation. - /// - class AddLinkAnnotation + // Annotation code will go here +} +``` +## Step 3: Create Link Annotation +Define a `LinkAnnotation` object and specify its properties such as message, opacity, page number, background color, points, replies, and URL. +```csharp +LinkAnnotation link = new LinkAnnotation +{ + CreatedOn = DateTime.Now, + Message = "This is link annotation", + Opacity = 0.7, + PageNumber = 0, + BackgroundColor = 16761035, + Points = new List { - public static void Run() + new Point(80, 730), new Point(240, 730), new Point(80, 650), new Point(240, 650) + }, + Replies = new List + { + new Reply { - string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); - - using (Annotator annotator = new Annotator("input.pdf")) - { - LinkAnnotation link = new LinkAnnotation - { - CreatedOn = DateTime.Now, - Message = "This is link annotation", - Opacity = 0.7, - PageNumber = 0, - BackgroundColor = 16761035, - Points = new List - { - new Point(80, 730), new Point(240, 730), new Point(80, 650), new Point(240, 650) - }, - Replies = new List - { - new Reply - { - Comment = "First comment", - RepliedOn = DateTime.Now - }, - new Reply - { - Comment = "Second comment", - RepliedOn = DateTime.Now - } - }, - Url = "https://www.google.com" - }; - annotator.Add(link); - annotator.Save(outputPath); - } - Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); + Comment = "First comment", + RepliedOn = DateTime.Now + }, + new Reply + { + Comment = "Second comment", + RepliedOn = DateTime.Now } - } -} - + }, + Url = "https://www.google.com" +}; +``` +## Step 4: Add Annotation +Add the created link annotation to the document using the `Add` method of the annotator instance. +```csharp +annotator.Add(link); ``` +## Step 5: Save Document +Save the annotated document to the specified output path. +```csharp +annotator.Save(outputPath); +``` +## Step 6: Display Success Message +Inform the user about the successful saving of the annotated document. +```csharp +Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); +``` + +## Conclusion +In conclusion, by following the above steps, you can seamlessly add link annotations to documents using Groupdocs.Annotation for .NET. This enhances document collaboration and provides users with interactive features. +## FAQ's +### Is Groupdocs.Annotation for .NET compatible with all types of documents? +Groupdocs.Annotation for .NET supports a wide range of document formats including PDF, Word, Excel, and more. +### Can I customize the appearance of annotations? +Yes, you can customize various properties of annotations such as color, opacity, and size to suit your requirements. +### Does Groupdocs.Annotation for .NET offer real-time collaboration features? +Yes, Groupdocs.Annotation for .NET provides real-time collaboration features allowing multiple users to annotate documents simultaneously. +### Is technical support available for Groupdocs products? +Yes, technical support for Groupdocs products is available through the forum and support [here](https://forum.groupdocs.com/c/annotation/10). +### Can I try Groupdocs.Annotation for .NET before purchasing? +Yes, you can avail of a free trial of Groupdocs.Annotation for .NET to explore its features before making a purchase[here](https://purchase.groupdocs.com/temporary-license/). diff --git a/content/english/net/unlocking-annotation-power/add-point-annotation/_index.md b/content/english/net/unlocking-annotation-power/add-point-annotation/_index.md index 2ec04a4..21dda0a 100644 --- a/content/english/net/unlocking-annotation-power/add-point-annotation/_index.md +++ b/content/english/net/unlocking-annotation-power/add-point-annotation/_index.md @@ -2,13 +2,21 @@ title: Add Point Annotation to Document linktitle: Add Point Annotation to Document second_title: GroupDocs.Annotation .NET API -description: +description: Learn how to add Point Annotation to PDFs using GroupDocs.Annotation for .NET. Step-by-step guide for seamless integration. type: docs weight: 17 url: /net/unlocking-annotation-power/add-point-annotation/ --- +## Introduction +GroupDocs.Annotation for .NET is a powerful tool that allows developers to add various types of annotations to documents programmatically. In this tutorial, we will focus on adding a Point Annotation to a document using C#. +## Prerequisites +Before we begin, make sure you have the following: +1. Basic understanding of C# programming language. +2. Visual Studio installed on your system. +3. GroupDocs.Annotation for .NET library installed. You can download it from [here](https://releases.groupdocs.com/annotation/net/). -## Complete Source Code +## Importing Necessary Namespaces +To get started, you need to import the required namespaces into your C# project: ```csharp using System; using System.Collections.Generic; @@ -16,46 +24,62 @@ using System.IO; using GroupDocs.Annotation.Models; using GroupDocs.Annotation.Models.AnnotationModels; using GroupDocs.Annotation.Options; - -namespace GroupDocs.Annotation.Examples.CSharp.BasicUsage.AddAnnotationToTheDocument +``` +## Step 1: Define Output Path +```csharp +string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); +``` +In this step, we define the output path where the annotated document will be saved. +## Step 2: Initialize Annotator +```csharp +using (Annotator annotator = new Annotator("input.pdf")) +``` +Here, we initialize the `Annotator` object with the input document ("input.pdf"). +## Step 3: Create Point Annotation +```csharp +PointAnnotation point = new PointAnnotation { - /// - /// This example demonstrates adding point annotation. - /// - class AddPointAnnotation + Box = new Rectangle(100, 100, 0, 0), + CreatedOn = DateTime.Now, + Message = "This is point annotation", + PageNumber = 0, + Replies = new List { - public static void Run() + new Reply { - string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); - - using (Annotator annotator = new Annotator("input.pdf")) - { - PointAnnotation point = new PointAnnotation - { - Box = new Rectangle(100, 100, 0, 0), - CreatedOn = DateTime.Now, - Message = "This is point annotation", - PageNumber = 0, - Replies = new List - { - new Reply - { - Comment = "First comment", - RepliedOn = DateTime.Now - }, - new Reply - { - Comment = "Second comment", - RepliedOn = DateTime.Now - } - } - }; - annotator.Add(point); - annotator.Save(outputPath); - } - Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); + Comment = "First comment", + RepliedOn = DateTime.Now + }, + new Reply + { + Comment = "Second comment", + RepliedOn = DateTime.Now } } -} - +}; +``` +In this step, we create a `PointAnnotation` object and specify its properties such as position, message, page number, and replies. +## Step 4: Add Annotation +```csharp +annotator.Add(point); ``` +Here, we add the created point annotation to the document. +## Step 5: Save Document +```csharp +annotator.Save(outputPath); +``` +Finally, we save the annotated document to the specified output path. + +## Conclusion +In this tutorial, we've learned how to add a Point Annotation to a document using GroupDocs.Annotation for .NET. With this powerful library, you can enhance your document management applications by incorporating annotation functionalities. +## FAQ's +### Is GroupDocs.Annotation for .NET compatible with all document formats? +Yes, GroupDocs.Annotation for .NET supports a wide range of document formats including PDF, Microsoft Word, Excel, PowerPoint, and more. +### Can I customize the appearance of annotations? +Absolutely! GroupDocs.Annotation for .NET provides extensive options for customizing the appearance of annotations to suit your application's needs. +### Is there a free trial available for GroupDocs.Annotation for .NET? +Yes, you can avail of a free trial from [here](https://releases.groupdocs.com/). +### How can I get support for any issues or queries related to GroupDocs.Annotation for .NET? +You can get support from the GroupDocs.Annotation forum [here](https://forum.groupdocs.com/c/annotation/10). +### Can I obtain a temporary license for testing purposes? +Yes, you can obtain a temporary license from [here](https://purchase.groupdocs.com/temporary-license/). diff --git a/content/english/net/unlocking-annotation-power/add-polyline-annotation/_index.md b/content/english/net/unlocking-annotation-power/add-polyline-annotation/_index.md index c89c684..ce0bec8 100644 --- a/content/english/net/unlocking-annotation-power/add-polyline-annotation/_index.md +++ b/content/english/net/unlocking-annotation-power/add-polyline-annotation/_index.md @@ -2,13 +2,20 @@ title: Add Polyline Annotation to Document linktitle: Add Polyline Annotation to Document second_title: GroupDocs.Annotation .NET API -description: +description: Learn how to add polyline annotations to documents using GroupDocs.Annotation for .NET. Enhance collaboration and document review processes effortlessly. type: docs weight: 18 url: /net/unlocking-annotation-power/add-polyline-annotation/ --- +## Introduction +GroupDocs.Annotation for .NET is a powerful tool that allows developers to annotate PDF and Microsoft Office documents programmatically. Among its features is the ability to add polyline annotations to documents, enhancing collaboration and document review processes. +## Prerequisites +Before proceeding with this tutorial, make sure you have the following: +- Visual Studio installed on your system. +- Basic knowledge of C# programming language. +- GroupDocs.Annotation for .NET library installed. You can download it from [here](https://releases.groupdocs.com/annotation/net/). -## Complete Source Code +## Import Namespaces ```csharp using System; using System.Collections.Generic; @@ -16,51 +23,74 @@ using System.IO; using GroupDocs.Annotation.Models; using GroupDocs.Annotation.Models.AnnotationModels; using GroupDocs.Annotation.Options; - -namespace GroupDocs.Annotation.Examples.CSharp.BasicUsage.AddAnnotationToTheDocument +``` +## Step 1: Define Output Path +First, define the output path where the annotated document will be saved. +```csharp +string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); +``` +## Step 2: Initialize Annotator +Initialize the annotator by providing the input document name. +```csharp +using (Annotator annotator = new Annotator("input.pdf")) { - /// - /// This example demonstrates adding polyline annotation. - /// - class AddPolylineAnnotation +``` +## Step 3: Create Polyline Annotation Object +Create a polyline annotation object and set its properties such as position, message, opacity, pen color, pen style, and pen width. +```csharp +PolylineAnnotation polyline = new PolylineAnnotation +{ + Box = new Rectangle(250, 35, 102, 12), + CreatedOn = DateTime.Now, + Message = "This is polyline annotation", + Opacity = 0.7, + PageNumber = 0, + PenColor = 65535, + PenStyle = PenStyle.Dot, + PenWidth = 3, + Replies = new List { - public static void Run() + new Reply { - string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); - - using (Annotator annotator = new Annotator("input.pdf")) - { - PolylineAnnotation polyline = new PolylineAnnotation - { - Box = new Rectangle(250, 35, 102, 12), - CreatedOn = DateTime.Now, - Message = "This is polyline annotation", - Opacity = 0.7, - PageNumber = 0, - PenColor = 65535, - PenStyle = PenStyle.Dot, - PenWidth = 3, - Replies = new List - { - new Reply - { - Comment = "First comment", - RepliedOn = DateTime.Now - }, - new Reply - { - Comment = "Second comment", - RepliedOn = DateTime.Now - } - }, - SvgPath = "M250.8280751173709,48.209295774647885l0.6986854460093896,0l0.6986854460093896,-1.3973708920187793l0.6986854460093896,0l0.6986854460093896,-1.3973708920187793l1.3973708920187793,-0.6986854460093896l0.6986854460093896,-0.6986854460093896l0.6986854460093896,0l2.096056338028169,-1.3973708920187793l3.493427230046948,-1.3973708920187793l0.6986854460093896,-0.6986854460093896l1.3973708920187793,-1.3973708920187793l0.6986854460093896,0l1.3973708920187793,-0.6986854460093896l0.6986854460093896,0l0.6986854460093896,-0.6986854460093896l0.6986854460093896,0l0.6986854460093896,0l0,-0.6986854460093896l0.6986854460093896,0l0.6986854460093896,0l1.3973708920187793,0l0,-0.6986854460093896l0.6986854460093896,0l1.3973708920187793,0l0.6986854460093896,0l1.3973708920187793,0l0.6986854460093896,0l2.096056338028169,-0.6986854460093896l1.3973708920187793,0l0.6986854460093896,0l0.6986854460093896,0l1.3973708920187793,0l1.3973708920187793,0l1.3973708920187793,0l2.096056338028169,0l5.589483568075117,0l1.3973708920187793,0l2.096056338028169,0l0.6986854460093896,0l1.3973708920187793,0l0.6986854460093896,0l1.3973708920187793,0l1.3973708920187793,0l0.6986854460093896,0.6986854460093896l1.3973708920187793,0l2.096056338028169,1.3973708920187793l0.6986854460093896,0l0.6986854460093896,0l0,0.6986854460093896l1.3973708920187793,0l0.6986854460093896,0.6986854460093896l1.3973708920187793,0.6986854460093896l0,0.6986854460093896l0.6986854460093896,0l1.3973708920187793,0.6986854460093896l1.3973708920187793,0.6986854460093896l3.493427230046948,0.6986854460093896l1.3973708920187793,0.6986854460093896l2.096056338028169,0.6986854460093896l1.3973708920187793,0.6986854460093896l1.3973708920187793,0l1.3973708920187793,0.6986854460093896l0.6986854460093896,0l0.6986854460093896,0.6986854460093896l1.3973708920187793,0l0.6986854460093896,0l0.6986854460093896,0l2.7947417840375586,0l1.3973708920187793,0l0.6986854460093896,0l1.3973708920187793,0l0.6986854460093896,0l0.6986854460093896,0l1.3973708920187793,0l0.6986854460093896,0l2.7947417840375586,0l0.6986854460093896,0l2.7947417840375586,0l1.3973708920187793,0l0.6986854460093896,0l0.6986854460093896,0l0.6986854460093896,0l0.6986854460093896,0l0.6986854460093896,0l0.6986854460093896,0l0.6986854460093896,-0.6986854460093896l0.6986854460093896,0" - }; - annotator.Add(polyline); - annotator.Save(outputPath); - } - Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); + Comment = "First comment", + RepliedOn = DateTime.Now + }, + new Reply + { + Comment = "Second comment", + RepliedOn = DateTime.Now } - } -} - + }, + SvgPath = "M250.8280751173709,48.209295774647885l0.6986854460093896,0l0.6986854460093896,-1.3973708920187793l0.6986854460093896,0l0.6986854460093896,-1.3973708920187793l1.3973708920187793,-0.6986854460093896l0.6986854460093896,-0.6986854460093896l0.6986854460093896,0l2.096056338028169,-1.3973708920187793l3.493427230046948,-1.3973708920187793l0.6986854460093896,-0.6986854460093896l1.3973708920187793,-1.3973708920187793l0.6986854460093896,0l1.3973708920187793,-0.6986854460093896l0.6986854460093896,0l0.6986854460093896,-0.6986854460093896l0.6986854460093896,0l0.6986854460093896,0l0,-0.6986854460093896l0.6986854460093896,0l0.6986854460093896,0l1.3973708920187793,0l0,-0.6986854460093896l0.6986854460093896,0l1.3973708920187793,0l0.6986854460093896,0l1.3973708920187793,0l0.6986854460093896,0l2.096056338028169,-0.6986854460093896l1.3973708920187793,0l0.6986854460093896,0l0.6986854460093896,0l1.3973708920187793,0l1.3973708920187793,0l1.3973708920187793,0l2.096056338028169,0l5.589483568075117,0l1.3973708920187793,0l2.096056338028169,0l0.6986854460093896,0l1.3973708920187793,0l0.6986854460093896,0l1.3973708920187793,0l1.3973708920187793,0l0.6986854460093896,0.6986854460093896l1.3973708920187793,0l2.096056338028169,1.3973708920187793l0.6986854460093896,0l0.6986854460093896,0l0,0.6986854460093896l1.3973708920187793,0l0.6986854460093896,0.6986854460093896l1.3973708920187793,0.6986854460093896l0,0.6986854460093896l0.6986854460093896,0l1.3973708920187793,0.6986854460093896l1.3973708920187793,0.6986854460093896l3.493427230046948,0.6986854460093896l1.3973708920187793,0.6986854460093896l2.096056338028169,0.6986854460093896l1.3973708920187793,0.6986854460093896l1.3973708920187793,0l1.3973708920187793,0.6986854460093896l0.6986854460093896,0l0.6986854460093896,0.6986854460093896l1.3973708920187793,0l0.6986854460093896,0l0.6986854460093896,0l2.7947417840375586,0l1.3973708920187793,0l0.6986854460093896,0l1.3973708920187793,0l0.6986854460093896,0l0.6986854460093896,0l1.3973708920187793,0l0.6986854460093896,0l2.7947417840375586,0l0.6986854460093896,0l2.7947417840375586,0l1.3973708920187793,0l0.6986854460093896,0l0.6986854460093896,0l0.6986854460093896,0l0.6986854460093896,0l0.698685 +4460093896,0l0.6986854460093896,0l0.6986854460093896,-0.6986854460093896l0.6986854460093896,0" +}; ``` +## Step 4: Add Polyline Annotation +Add the polyline annotation to the document using the annotator object. +```csharp +annotator.Add(polyline); +``` +## Step 5: Save Document +Save the annotated document to the specified output path. +```csharp +annotator.Save(outputPath); +``` +## Step 6: Display Success Message +Display a message confirming the successful saving of the document. +```csharp +Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); +``` + +## Conclusion +In this tutorial, we have learned how to add a polyline annotation to a document using GroupDocs.Annotation for .NET. This feature enhances collaboration and document review processes, making it easier for users to communicate feedback and suggestions effectively. +## FAQ's +### Is GroupDocs.Annotation for .NET compatible with all document formats? +GroupDocs.Annotation for .NET supports popular document formats such as PDF and Microsoft Office formats including Word, Excel, and PowerPoint. +### Can I customize the appearance of annotations? +Yes, you can customize various properties of annotations such as color, opacity, style, and width to suit your requirements. +### Does GroupDocs.Annotation for .NET offer a free trial? +Yes, you can avail of a free trial of GroupDocs.Annotation for .NET by visiting [this link](https://releases.groupdocs.com/). +### Where can I find documentation for GroupDocs.Annotation for .NET? +You can find the documentation for GroupDocs.Annotation for .NET [here](https://reference.groupdocs.com/annotation/net/). +### How can I get support for any issues or queries related to GroupDocs.Annotation for .NET? +You can get support by visiting the GroupDocs.Annotation forum [here](https://forum.groupdocs.com/c/annotation/10). diff --git a/content/english/net/unlocking-annotation-power/add-resources-redaction-annotation/_index.md b/content/english/net/unlocking-annotation-power/add-resources-redaction-annotation/_index.md index dd59d50..84f1192 100644 --- a/content/english/net/unlocking-annotation-power/add-resources-redaction-annotation/_index.md +++ b/content/english/net/unlocking-annotation-power/add-resources-redaction-annotation/_index.md @@ -2,13 +2,25 @@ title: Add Resources Redaction Annotation to Document linktitle: Add Resources Redaction Annotation to Document second_title: GroupDocs.Annotation .NET API -description: +description: Enhance document management workflows with GroupDocs.Annotation for .NET. Seamlessly integrate Resources Redaction Annotation into your .NET for efficient. type: docs weight: 19 url: /net/unlocking-annotation-power/add-resources-redaction-annotation/ --- +## Introduction +In the realm of .NET development, integrating efficient tools for document annotation can significantly enhance productivity and streamline workflows. GroupDocs.Annotation for .NET emerges as a robust solution, offering a plethora of functionalities to annotate and manipulate documents seamlessly. This tutorial delves into the process of integrating and utilizing Resources Redaction Annotation, a powerful feature within GroupDocs.Annotation for .NET. +## Prerequisites +Before diving into the implementation, ensure you have the following prerequisites in place: +### 1. .NET Development Environment +Make sure you have a functional .NET development environment set up on your machine. If not, you can download and install the latest version of the .NET SDK from the Microsoft website. +### 2. GroupDocs.Annotation for .NET +Download and install GroupDocs.Annotation for .NET library from the provided [download link](https://releases.groupdocs.com/annotation/net/). Follow the installation instructions outlined in the documentation for seamless integration. +### 3. Basic Understanding of C# +Familiarize yourself with the C# programming language syntax and concepts to effectively implement the provided code snippets. + +## Import Namespaces +Incorporate the necessary namespaces to access the required classes and methods for document annotation using GroupDocs.Annotation for .NET. -## Complete Source Code ```csharp using System; using System.Collections.Generic; @@ -19,46 +31,70 @@ using System.Threading.Tasks; using GroupDocs.Annotation.Models; using GroupDocs.Annotation.Models.AnnotationModels; using GroupDocs.Annotation.Options; - -namespace GroupDocs.Annotation.Examples.CSharp.BasicUsage.AddAnnotationToTheDocument +``` +## Step 1: Define Output Path +Specify the output path where the annotated document will be saved. +```csharp +string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); +``` +## Step 2: Initialize Annotator Object +Instantiate the Annotator object by providing the path to the input document. +```csharp +using (Annotator annotator = new Annotator("input.pdf")) { - /// - /// This example demonstrates adding resources redaction annotation. - /// - class AddResourcesRedactionAnnotation + // Annotation code will be added here +} +``` +## Step 3: Create Resources Redaction Annotation +Define a ResourcesRedactionAnnotation object with the desired properties, such as box dimensions, message, page number, and replies. +```csharp +ResourcesRedactionAnnotation resourcesRedaction = new ResourcesRedactionAnnotation +{ + Box = new Rectangle(100, 100, 100, 100), + CreatedOn = DateTime.Now, + Message = "This is resources redaction annotation", + PageNumber = 0, + Replies = new List { - public static void Run() + new Reply { - string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); - - using (Annotator annotator = new Annotator("input.pdf")) - { - ResourcesRedactionAnnotation resourcesRedaction = new ResourcesRedactionAnnotation - { - Box = new Rectangle(100, 100, 100, 100), - CreatedOn = DateTime.Now, - Message = "This is resources redaction annotation", - PageNumber = 0, - Replies = new List - { - new Reply - { - Comment = "First comment", - RepliedOn = DateTime.Now - }, - new Reply - { - Comment = "Second comment", - RepliedOn = DateTime.Now - } - } - }; - annotator.Add(resourcesRedaction); - annotator.Save(outputPath); - } - Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); + Comment = "First comment", + RepliedOn = DateTime.Now + }, + new Reply + { + Comment = "Second comment", + RepliedOn = DateTime.Now } } -} - +}; +``` +## Step 4: Add Annotation +Add the created Resources Redaction Annotation to the document using the annotator object. +```csharp +annotator.Add(resourcesRedaction); ``` +## Step 5: Save Annotated Document +Save the annotated document to the specified output path. +```csharp +annotator.Save(outputPath); +``` +## Step 6: Display Success Message +Inform the user about the successful completion of the annotation process and provide the path to the annotated document. +```csharp +Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); +``` + +## Conclusion +In conclusion, GroupDocs.Annotation for .NET offers a comprehensive suite of tools for document annotation, empowering .NET developers to enhance document management workflows effectively. By following the step-by-step guide outlined in this tutorial, you can seamlessly integrate Resources Redaction Annotation into your .NET applications, thereby improving collaboration and productivity. +## FAQ's +### Is GroupDocs.Annotation for .NET compatible with all document formats? +GroupDocs.Annotation for .NET supports a wide range of document formats, including PDF, DOCX, PPTX, XLSX, and more. +### Can I customize the appearance of annotations created using GroupDocs.Annotation for .NET? +Yes, you can customize the appearance of annotations by adjusting properties such as color, opacity, and line thickness. +### Is there a free trial available for GroupDocs.Annotation for .NET? +Yes, you can avail of a free trial of GroupDocs.Annotation for .NET from the provided [link](https://releases.groupdocs.com/). +### How can I seek assistance or support for GroupDocs.Annotation for .NET? +You can visit the GroupDocs.Annotation forum [here](https://forum.groupdocs.com/c/annotation/10) to seek assistance from the community or submit your queries. +### Where can I obtain a temporary license for GroupDocs.Annotation for .NET? +You can acquire a temporary license for GroupDocs.Annotation for .NET from the provided [link](https://purchase.groupdocs.com/temporary-license/). diff --git a/content/english/net/unlocking-annotation-power/add-search-text-fragment-annotation/_index.md b/content/english/net/unlocking-annotation-power/add-search-text-fragment-annotation/_index.md index d8a21e4..7fdbdc2 100644 --- a/content/english/net/unlocking-annotation-power/add-search-text-fragment-annotation/_index.md +++ b/content/english/net/unlocking-annotation-power/add-search-text-fragment-annotation/_index.md @@ -2,13 +2,20 @@ title: Add Search Text Fragment Annotation to Document linktitle: Add Search Text Fragment Annotation to Document second_title: GroupDocs.Annotation .NET API -description: +description: Explore the power of GroupDocs.Annotation for .NET and effortlessly add document annotation capabilities to your applications. type: docs weight: 20 url: /net/unlocking-annotation-power/add-search-text-fragment-annotation/ --- +## Introduction +In the realm of .NET development, GroupDocs.Annotation stands out as a powerful tool for annotating documents seamlessly. Whether you're a seasoned developer or just stepping into the world of .NET, this comprehensive tutorial will walk you through the essentials of using GroupDocs.Annotation for .NET, from importing namespaces to mastering the intricacies of adding search text fragment annotations to your documents. +## Introduction +GroupDocs.Annotation for .NET empowers developers to incorporate document annotation capabilities into their applications effortlessly. With its intuitive API and robust features, developers can annotate various document formats, including PDFs, Microsoft Office documents, images, and more. +## Prerequisites +Before diving into GroupDocs.Annotation for .NET, ensure you have the following prerequisites in place: -## Complete Source Code +## Import Namespaces +Firstly, import the necessary namespaces to access GroupDocs.Annotation classes and methods in your .NET project: ```csharp using System; using System.Collections.Generic; @@ -16,35 +23,56 @@ using System.IO; using GroupDocs.Annotation.Models; using GroupDocs.Annotation.Models.AnnotationModels; using GroupDocs.Annotation.Options; - -namespace GroupDocs.Annotation.Examples.CSharp.BasicUsage.AddAnnotationToTheDocument +``` +## Step 1: Define Output Path +Begin by defining the output path where the annotated document will be saved: +```csharp +string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); +``` +## Step 2: Initialize Annotator +Next, initialize an instance of the `Annotator` class by providing the path to the document you want to annotate: +```csharp +using (Annotator annotator = new Annotator("input.pdf")) { - /// - /// This example demonstrates adding search text fragment annotation. - /// - class AddSearchTextFragmentAnnotation - { - public static void Run() - { - - string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); - - using (Annotator annotator = new Annotator("input.pdf")) - { - SearchTextFragment searchText = new SearchTextFragment() - { - Text = "Welcome to GroupDocs", //here should be the text that is contained in your document, otherwise nothing will be highlighted - FontSize = 10, - FontFamily = "Calibri", - FontColor = 65535, - BackgroundColor = 16761035, - }; - annotator.Add(searchText); - annotator.Save(outputPath); - } - Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); - } - } -} - ``` +## Step 3: Create Search Text Fragment Annotation +Create a `SearchTextFragment` object with the desired properties, such as text to search for, font size, font family, font color, and background color: +```csharp +SearchTextFragment searchText = new SearchTextFragment() +{ + Text = "Welcome to GroupDocs", + FontSize = 10, + FontFamily = "Calibri", + FontColor = 65535, + BackgroundColor = 16761035, +}; +``` +## Step 4: Add Annotation +Add the created search text fragment annotation to the document using the `Add` method of the annotator: +```csharp +annotator.Add(searchText); +``` +## Step 5: Save Annotated Document +Save the annotated document to the specified output path: +```csharp +annotator.Save(outputPath); +``` +## Step 6: Display Success Message +Inform the user that the document has been successfully saved: +```csharp +Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); +``` + +## Conclusion +In conclusion, GroupDocs.Annotation for .NET simplifies the process of adding annotations to documents, enhancing collaboration and document review processes. By following the steps outlined in this guide, you can seamlessly integrate document annotation capabilities into your .NET applications. +## FAQ's +### Is GroupDocs.Annotation compatible with all document formats? +Yes, GroupDocs.Annotation supports a wide range of document formats, including PDFs, Microsoft Office documents, images, and more. +### Can I customize the appearance of annotations? +Absolutely! GroupDocs.Annotation provides extensive customization options for annotations, allowing you to adjust properties such as font size, color, and style. +### Is there a free trial available for GroupDocs.Annotation? +Yes, you can access a free trial of GroupDocs.Annotation to explore its features and capabilities before making a purchase [here](https://releases.groupdocs.com/).. +### Where can I find support for GroupDocs.Annotation? +For support and assistance with GroupDocs.Annotation, you can visit the GroupDocs [forum](https://forum.groupdocs.com/c/annotation/10) dedicated to annotation-related queries and discussions. +### How do I obtain a temporary license for GroupDocs.Annotation? +You can acquire a temporary license for GroupDocs.Annotation through the GroupDocs [website](https://purchase.groupdocs.com/temporary-license/), enabling you to evaluate the product fully. diff --git a/content/english/net/unlocking-annotation-power/add-text-field-annotation/_index.md b/content/english/net/unlocking-annotation-power/add-text-field-annotation/_index.md index 3e9662b..00f776a 100644 --- a/content/english/net/unlocking-annotation-power/add-text-field-annotation/_index.md +++ b/content/english/net/unlocking-annotation-power/add-text-field-annotation/_index.md @@ -2,13 +2,25 @@ title: Add Text Field Annotation to Document linktitle: Add Text Field Annotation to Document second_title: GroupDocs.Annotation .NET API -description: +description: Learn how to seamlessly integrate text field annotations into your .NET applications using Groupdocs.Annotation for .NET. type: docs weight: 21 url: /net/unlocking-annotation-power/add-text-field-annotation/ --- +## Introduction +Groupdocs.Annotation for .NET is a powerful tool that allows developers to add annotation features to their .NET applications effortlessly. Whether you're working on a document management system, a collaborative platform, or any application where document annotation is essential, Groupdocs.Annotation simplifies the process with its comprehensive set of features and intuitive API. +In this tutorial, we'll delve into one of the fundamental functionalities of Groupdocs.Annotation for .NET: adding a text field annotation to a document. By following this step-by-step guide, you'll learn how to integrate text field annotations seamlessly into your .NET applications, enhancing the user experience and collaboration capabilities. +## Prerequisites +Before diving into the implementation, ensure you have the following prerequisites in place: +### 1. Installation of Groupdocs.Annotation for .NET +First and foremost, you need to download and install Groupdocs.Annotation for .NET. You can find the download link [here](https://releases.groupdocs.com/annotation/net/). Follow the installation instructions provided in the documentation [here](https://reference.groupdocs.com/annotation/net/) to set up the library correctly. +### 2. Development Environment Setup +Make sure you have a development environment set up for .NET development. This includes having a compatible IDE such as Visual Studio and .NET Framework installed on your system. +### 3. Basic Understanding of C# Programming +Familiarize yourself with C# programming language basics, as this tutorial will involve writing C# code to integrate text field annotations. -## Complete Source Code +## Import Namespaces +In your C# project, start by importing the necessary namespaces to utilize Groupdocs.Annotation functionalities. ```csharp using System; using System.Collections.Generic; @@ -16,53 +28,71 @@ using System.IO; using GroupDocs.Annotation.Models; using GroupDocs.Annotation.Models.AnnotationModels; using GroupDocs.Annotation.Options; +``` -namespace GroupDocs.Annotation.Examples.CSharp.BasicUsage.AddAnnotationToTheDocument +Now, let's proceed with adding a text field annotation to a document using Groupdocs.Annotation for .NET. +## Step 1: Define Output Path +```csharp +string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); +``` +## Step 2: Initialize Annotator +```csharp +using (Annotator annotator = new Annotator("input.pdf")) { - /// - /// This example demonstrates adding text field annotation. - /// - class AddTextFieldAnnotation +``` +## Step 3: Create TextFieldAnnotation Object +```csharp +TextFieldAnnotation textField = new TextFieldAnnotation +{ + BackgroundColor = 65535, + Box = new Rectangle(100, 100, 100, 100), + CreatedOn = DateTime.Now, + Text = "Some text", + FontColor = 65535, + FontSize = 12, + Message = "This is text field annotation", + Opacity = 0.7, + PageNumber = 0, + PenStyle = PenStyle.Dot, + PenWidth = 3, + Replies = new List { - public static void Run() + new Reply { - string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); - - using (Annotator annotator = new Annotator("input.pdf")) - { - TextFieldAnnotation textField = new TextFieldAnnotation - { - BackgroundColor = 65535, - Box = new Rectangle(100, 100, 100, 100), - CreatedOn = DateTime.Now, - Text = "Some text", - FontColor = 65535, - FontSize = 12, - Message = "This is text field annotation", - Opacity = 0.7, - PageNumber = 0, - PenStyle = PenStyle.Dot, - PenWidth = 3, - Replies = new List - { - new Reply - { - Comment = "First comment", - RepliedOn = DateTime.Now - }, - new Reply - { - Comment = "Second comment", - RepliedOn = DateTime.Now - } - } - }; - annotator.Add(textField); - annotator.Save(outputPath); - } - Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); + Comment = "First comment", + RepliedOn = DateTime.Now + }, + new Reply + { + Comment = "Second comment", + RepliedOn = DateTime.Now } } -} - +}; +``` +## Step 4: Add Annotation to Document +```csharp +annotator.Add(textField); +``` +## Step 5: Save Document with Annotation +```csharp +annotator.Save(outputPath); +``` +## Step 6: Display Success Message +```csharp +Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); ``` + +## Conclusion +In conclusion, integrating text field annotations into your .NET applications using Groupdocs.Annotation for .NET is a straightforward process. By following the steps outlined in this tutorial, you can enhance document collaboration and user interaction within your applications seamlessly. +## FAQ's +### Can I customize the appearance of text field annotations? +Yes, you can customize various attributes such as background color, font size, opacity, etc., according to your requirements. +### Is Groupdocs.Annotation for .NET compatible with different document formats? +Yes, Groupdocs.Annotation supports a wide range of document formats including PDF, DOCX, PPTX, XLSX, and more. +### Can I add multiple annotations to the same document? +Absolutely, you can add multiple annotations of different types to the same document, enabling rich document interaction. +### Is there a trial version available for Groupdocs.Annotation for .NET? +Yes, you can explore the features of Groupdocs.Annotation by accessing the free trial [here](https://releases.groupdocs.com/). +### Where can I find support for Groupdocs.Annotation for .NET? +You can find assistance and engage with the community on the Groupdocs.Annotation forum [here](https://forum.groupdocs.com/c/annotation/10). diff --git a/content/english/net/unlocking-annotation-power/add-text-highlight-annotation/_index.md b/content/english/net/unlocking-annotation-power/add-text-highlight-annotation/_index.md index 3df1c95..18af318 100644 --- a/content/english/net/unlocking-annotation-power/add-text-highlight-annotation/_index.md +++ b/content/english/net/unlocking-annotation-power/add-text-highlight-annotation/_index.md @@ -2,13 +2,22 @@ title: Add Text Highlight Annotation to Document linktitle: Add Text Highlight Annotation to Document second_title: GroupDocs.Annotation .NET API -description: +description: Learn how to add text highlight annotations to documents using GroupDocs.Annotation for .NET. Enhance collaboration and productivity with this comprehensive. type: docs weight: 22 url: /net/unlocking-annotation-power/add-text-highlight-annotation/ --- +## Introduction +In the realm of document management and collaboration, GroupDocs.Annotation for .NET emerges as a robust solution, empowering developers to seamlessly integrate text highlight annotations into their applications. This tutorial serves as a comprehensive guide to adding text highlight annotations to documents using GroupDocs.Annotation for .NET. Through step-by-step instructions and detailed explanations, you will gain proficiency in harnessing the capabilities of this powerful library. +## Prerequisites +Before delving into the implementation of text highlight annotations, ensure that you have the following prerequisites in place: +1. Environment Setup: Have a suitable development environment configured for .NET development. +2. Installation of GroupDocs.Annotation for .NET: Download and install GroupDocs.Annotation for .NET from the provided [download link](https://releases.groupdocs.com/annotation/net/). +3. Familiarity with C#: Basic understanding of C# programming language. +4. Document to Annotate: Prepare a document (e.g., PDF) that you intend to annotate. -## Complete Source Code +## Import Namespaces +To begin, import the necessary namespaces in your C# code to utilize the functionalities of GroupDocs.Annotation for .NET: ```csharp using System; using System.Collections.Generic; @@ -16,52 +25,69 @@ using System.IO; using GroupDocs.Annotation.Models; using GroupDocs.Annotation.Models.AnnotationModels; using GroupDocs.Annotation.Options; - -namespace GroupDocs.Annotation.Examples.CSharp.BasicUsage.AddAnnotationToTheDocument +``` +#Now, let's break down the process of adding text highlight annotations into multiple steps: +## Step 1: Define Output Path +Specify the output path where the annotated document will be saved: +```csharp +string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); +``` +## Step 2: Initialize Annotator +Create an instance of the `Annotator` class, passing the document filename as a parameter: +```csharp +using (Annotator annotator = new Annotator("input.pdf")) +``` +## Step 3: Create Highlight Annotation +Instantiate a `HighlightAnnotation` object and configure its properties: +```csharp +HighlightAnnotation highlight = new HighlightAnnotation { - /// - /// This example demonstrates adding text highlight annotation. - /// - class AddTextHighlightAnnotation + BackgroundColor = 65535, + CreatedOn = DateTime.Now, + FontColor = 0, + Message = "This is highlight annotation", + Opacity = 0.5, + PageNumber = 0, + Points = new List + { + new Point(80, 730), new Point(240, 730), new Point(80, 650), new Point(240, 650) + }, + Replies = new List { - public static void Run() + new Reply { - string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); - - using (Annotator annotator = new Annotator("input.pdf")) - { - HighlightAnnotation highlight = new HighlightAnnotation - { - BackgroundColor = 65535, - CreatedOn = DateTime.Now, - FontColor = 0, - Message = "This is highlight annotation", - Opacity = 0.5, - PageNumber = 0, - Points = new List - { - new Point(80, 730), new Point(240, 730), new Point(80, 650), new Point(240, 650) - }, - Replies = new List - { - new Reply - { - Comment = "First comment", - RepliedOn = DateTime.Now - }, - new Reply - { - Comment = "Second comment", - RepliedOn = DateTime.Now - } - } - }; - annotator.Add(highlight); - annotator.Save(outputPath); - } - Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); + Comment = "First comment", + RepliedOn = DateTime.Now + }, + new Reply + { + Comment = "Second comment", + RepliedOn = DateTime.Now } } -} - +}; +``` +## Step 4: Add Annotation +Add the created highlight annotation to the document: +```csharp +annotator.Add(highlight); +``` +## Step 5: Save Annotated Document +Save the annotated document to the specified output path: +```csharp +annotator.Save(outputPath); ``` + +## Conclusion +In conclusion, GroupDocs.Annotation for .NET offers a streamlined approach to incorporate text highlight annotations into documents. By following the steps outlined in this tutorial, developers can seamlessly enhance document collaboration and productivity within their applications. +## FAQ's +### Is GroupDocs.Annotation for .NET compatible with all document formats? +GroupDocs.Annotation for .NET supports various document formats, including PDF, Word, Excel, and more. Refer to the documentation for the complete list. +### Can annotations be customized according to specific requirements? +Yes, developers have full control over the properties and appearance of annotations, allowing for customization to meet diverse needs. +### Is there a free trial available for GroupDocs.Annotation for .NET? +Yes, you can explore the features of GroupDocs.Annotation for .NET by accessing the free trial from the provided [link](https://releases.groupdocs.com/). +### How can I get support for any issues or queries related to GroupDocs.Annotation for .NET? +For support and assistance, you can visit the GroupDocs.Annotation forum [here](https://forum.groupdocs.com/c/annotation/10). +### What licensing options are available for GroupDocs.Annotation for .NET? +GroupDocs.Annotation for .NET offers various licensing options, including temporary licenses for testing purposes and commercial licenses for production environments. Visit the purchase page [here](https://purchase.groupdocs.com/buy) for more details. diff --git a/content/english/net/unlocking-annotation-power/add-text-redaction-annotation/_index.md b/content/english/net/unlocking-annotation-power/add-text-redaction-annotation/_index.md index aa17490..813cae9 100644 --- a/content/english/net/unlocking-annotation-power/add-text-redaction-annotation/_index.md +++ b/content/english/net/unlocking-annotation-power/add-text-redaction-annotation/_index.md @@ -2,13 +2,20 @@ title: Add Text Redaction Annotation to Document linktitle: Add Text Redaction Annotation to Document second_title: GroupDocs.Annotation .NET API -description: +description: Learn how to add text redaction annotations to PDF documents using GroupDocs.Annotation for .NET. Safeguard sensitive information effortlessly. type: docs weight: 23 url: /net/unlocking-annotation-power/add-text-redaction-annotation/ --- +## Introduction +Adding a text redaction annotation to a document can be a crucial step in securely managing sensitive information. GroupDocs.Annotation for .NET provides a robust solution to achieve this seamlessly. In this tutorial, we'll guide you through the process of adding a text redaction annotation to your document step by step. +## Prerequisites +Before we begin, make sure you have the following prerequisites in place: +1. GroupDocs.Annotation for .NET: Ensure you have installed the GroupDocs.Annotation for .NET library. You can download it from the [website](https://releases.groupdocs.com/annotation/net/). +2. Development Environment: Set up a development environment with a .NET compatible IDE such as Visual Studio. -## Complete Source Code +## Importing Namespaces +Firstly, let's import the necessary namespaces to our project: ```csharp using System; using System.Collections.Generic; @@ -16,50 +23,70 @@ using System.IO; using GroupDocs.Annotation.Models; using GroupDocs.Annotation.Models.AnnotationModels; using GroupDocs.Annotation.Options; - -namespace GroupDocs.Annotation.Examples.CSharp.BasicUsage.AddAnnotationToTheDocument +``` +## Step 1: Define Output Path +Define the output path where you want to save the annotated document. Ensure it's accessible and writable. +```csharp +string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); +``` +## Step 2: Initialize Annotator +Initialize the annotator with the input document path. Replace `"input.pdf"` with the path to your document. +```csharp +using (Annotator annotator = new Annotator("input.pdf")) { - /// - /// This example demonstrates adding text redaction annotation. - /// - class AddTextRedactionAnnotation + // Annotation code will go here +} +``` +## Step 3: Create Text Redaction Annotation +Create a `TextRedactionAnnotation` object with the required properties such as `PageNumber`, `FontColor`, and `Points`. Customize the annotation as per your requirements. +```csharp +TextRedactionAnnotation textRedaction = new TextRedactionAnnotation +{ + CreatedOn = DateTime.Now, + Message = "This is text redaction annotation", + PageNumber = 0, + FontColor = 16761035, + Points = new List + { + new Point(80, 730), new Point(240, 730), new Point(80, 650), new Point(240, 650) + }, + Replies = new List { - public static void Run() + new Reply { - string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); - - using (Annotator annotator = new Annotator("input.pdf")) - { - TextRedactionAnnotation textRedaction = new TextRedactionAnnotation - { - CreatedOn = DateTime.Now, - Message = "This is text redaction annotation", - PageNumber = 0, - FontColor = 16761035, - Points = new List - { - new Point(80, 730), new Point(240, 730), new Point(80, 650), new Point(240, 650) - }, - Replies = new List - { - new Reply - { - Comment = "First comment", - RepliedOn = DateTime.Now - }, - new Reply - { - Comment = "Second comment", - RepliedOn = DateTime.Now - } - } - }; - annotator.Add(textRedaction); - annotator.Save(outputPath); - } - Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); + Comment = "First comment", + RepliedOn = DateTime.Now + }, + new Reply + { + Comment = "Second comment", + RepliedOn = DateTime.Now } } -} - +}; ``` +## Step 4: Add Annotation and Save +Add the created annotation to the document using the annotator and save the annotated document to the specified output path. +```csharp +annotator.Add(textRedaction); +annotator.Save(outputPath); +``` +## Step 5: Check Output +Finally, confirm that the document has been saved successfully to the specified output path. +```csharp +Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); +``` + +## Conclusion +In this tutorial, we've walked through the process of adding a text redaction annotation to a document using GroupDocs.Annotation for .NET. With these steps, you can now securely manage sensitive information within your documents. +## FAQ's +### Can I customize the appearance of the text redaction annotation? +Yes, you can customize various properties such as font color, fill color, and opacity to suit your requirements. +### Is there a trial version available before purchasing? +Yes, you can access a free trial version from the [website](https://releases.groupdocs.com/). +### How can I get support if I encounter any issues? +You can get support from the GroupDocs.Annotation community forum [here](https://forum.groupdocs.com/c/annotation/10). +### Do I need a temporary license for testing purposes? +Yes, you can obtain a temporary license from the [purchase page](https://purchase.groupdocs.com/temporary-license/) for testing. +### Can I add multiple annotations to a single document? +Absolutely, GroupDocs.Annotation allows you to add various types of annotations and multiple instances to a single document. diff --git a/content/english/net/unlocking-annotation-power/add-text-replacement-annotation/_index.md b/content/english/net/unlocking-annotation-power/add-text-replacement-annotation/_index.md index 2448492..36065d6 100644 --- a/content/english/net/unlocking-annotation-power/add-text-replacement-annotation/_index.md +++ b/content/english/net/unlocking-annotation-power/add-text-replacement-annotation/_index.md @@ -2,13 +2,24 @@ title: Add Text Replacement Annotation to Document linktitle: Add Text Replacement Annotation to Document second_title: GroupDocs.Annotation .NET API -description: +description: Learn how to add text replacement annotations to your .NET documents effortlessly using GroupDocs.Annotation for .NET. Enhance your document manipulation capabilities. type: docs weight: 24 url: /net/unlocking-annotation-power/add-text-replacement-annotation/ --- +## Introduction +In this tutorial, we will guide you through the process of adding a Text Replacement Annotation to your documents using GroupDocs.Annotation for .NET. This powerful library allows developers to manipulate and annotate various types of documents programmatically. By the end of this tutorial, you'll be equipped with the knowledge to seamlessly integrate text replacement annotations into your .NET applications. +## Prerequisites +Before we begin, ensure that you have the following prerequisites installed: +### 1. .NET Framework Installed +Make sure you have the .NET Framework installed on your development machine. You can download it from the Microsoft website. +### 2. GroupDocs.Annotation for .NET Library +Download and install the GroupDocs.Annotation for .NET library from the [website](https://releases.groupdocs.com/annotation/net/). This library provides the necessary tools and functionalities to work with annotations in various document formats. +### 3. Development Environment Setup +Set up your preferred development environment, such as Visual Studio, to create and run .NET applications. -## Complete Source Code +## Import Namespaces +Before diving into the coding part, let's import the necessary namespaces required for working with GroupDocs.Annotation for .NET: ```csharp using System; using System.Collections.Generic; @@ -18,53 +29,77 @@ using GroupDocs.Annotation.Models; using GroupDocs.Annotation.Models.AnnotationModels; using GroupDocs.Annotation.Options; using Point = GroupDocs.Annotation.Models.Point; - -namespace GroupDocs.Annotation.Examples.CSharp.BasicUsage.AddAnnotationToTheDocument +``` +## Step 1: Define Output Path +```csharp +string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); +``` +Here, we define the output path where the annotated document will be saved. +## Step 2: Initialize Annotator +```csharp +using (Annotator annotator = new Annotator("input.pdf")) { - /// - /// This example demonstrates adding text replacement annotation. - /// - class AddTextReplacementAnnotation + // Annotation code will be placed here +} +``` +We initialize the Annotator object by specifying the input document ("input.pdf") within a using block to ensure proper disposal of resources. +## Step 3: Create Replacement Annotation +```csharp +ReplacementAnnotation replacement = new ReplacementAnnotation +{ + CreatedOn = DateTime.Now, + FontColor = Color.Blue.ToArgb(), + Message = "This is replacement annotation", + Opacity = 0.7, + PageNumber = 0, + BackgroundColor = Color.Red.ToArgb(), + Points = new List { - public static void Run() + new Point(80, 730), new Point(240, 730), new Point(80, 650), new Point(240, 650) + }, + Replies = new List + { + new Reply { - string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); - - using (Annotator annotator = new Annotator("input.pdf")) - { - ReplacementAnnotation replacement = new ReplacementAnnotation - { - CreatedOn = DateTime.Now, - FontColor = Color.Blue.ToArgb(), - Message = "This is replacement annotation", - Opacity = 0.7, - PageNumber = 0, - BackgroundColor = Color.Red.ToArgb(), - Points = new List - { - new Point(80, 730), new Point(240, 730), new Point(80, 650), new Point(240, 650) - }, - Replies = new List - { - new Reply - { - Comment = "First comment", - RepliedOn = DateTime.Now - }, - new Reply - { - Comment = "Second comment", - RepliedOn = DateTime.Now - } - }, - TextToReplace = "replaced text" - }; - annotator.Add(replacement); - annotator.Save(outputPath); - } - Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); + Comment = "First comment", + RepliedOn = DateTime.Now + }, + new Reply + { + Comment = "Second comment", + RepliedOn = DateTime.Now } - } -} - + }, + TextToReplace = "replaced text" +}; +``` +Here, we create a ReplacementAnnotation object with various properties such as creation date, font color, message, opacity, page number, background color, points (coordinates), replies (comments), and the text to replace. +## Step 4: Add Annotation +```csharp +annotator.Add(replacement); ``` +We add the created replacement annotation to the annotator. +## Step 5: Save Document +```csharp +annotator.Save(outputPath); +``` +Finally, we save the annotated document to the specified output path. +## Step 6: Display Success Message +```csharp +Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); +``` +A success message is displayed indicating that the document has been saved successfully. + +## Conclusion +In this tutorial, we've covered the process of adding text replacement annotations to documents using GroupDocs.Annotation for .NET. By following the step-by-step guide and understanding the prerequisites, you can easily integrate this functionality into your .NET applications. +## FAQ's +### Can I annotate documents of different formats using GroupDocs.Annotation for .NET? +Yes, GroupDocs.Annotation for .NET supports annotating various document formats such as PDF, DOCX, PPTX, XLSX, and more. +### Is GroupDocs.Annotation for .NET suitable for both desktop and web applications? +Yes, GroupDocs.Annotation for .NET can be used in both desktop and web applications, providing flexibility for developers. +### Can I customize the appearance of annotations added using GroupDocs.Annotation for .NET? +Absolutely, you can customize the appearance of annotations by modifying properties such as color, opacity, font, etc. +### Does GroupDocs.Annotation for .NET offer support for collaborative annotation features? +Yes, GroupDocs.Annotation for .NET provides features for collaborative annotation, allowing multiple users to annotate documents simultaneously. +### Is there a free trial available for GroupDocs.Annotation for .NET? +Yes, you can avail of a free trial of GroupDocs.Annotation for .NET from the [website](https://releases.groupdocs.com/). diff --git a/content/english/net/unlocking-annotation-power/add-text-squiggly-annotation/_index.md b/content/english/net/unlocking-annotation-power/add-text-squiggly-annotation/_index.md index 9c9ea4f..1642a6a 100644 --- a/content/english/net/unlocking-annotation-power/add-text-squiggly-annotation/_index.md +++ b/content/english/net/unlocking-annotation-power/add-text-squiggly-annotation/_index.md @@ -2,13 +2,23 @@ title: Add Text Squiggly Annotation to Document linktitle: Add Text Squiggly Annotation to Document second_title: GroupDocs.Annotation .NET API -description: +description: Learn how to effortlessly add text squiggly annotations to documents using Groupdocs.Annotation for .NET. Enhance collaboration and document review processes. type: docs weight: 25 url: /net/unlocking-annotation-power/add-text-squiggly-annotation/ --- +## Introduction + +Groupdocs.Annotation for .NET is a versatile library that enables developers to integrate robust annotation capabilities into their .NET applications effortlessly. Whether you're working with PDFs, Word documents, or other popular file formats, Groupdocs.Annotation provides a seamless solution for annotating and enhancing document collaboration. + +## Prerequisites + +Before diving into the tutorial, ensure that you have the following prerequisites in place: + +## Import Namespaces + +Make sure to import the necessary namespaces to access the functionalities provided by Groupdocs.Annotation for .NET. -## Complete Source Code ```csharp using System; using System.Collections.Generic; @@ -16,53 +26,109 @@ using System.IO; using GroupDocs.Annotation.Models; using GroupDocs.Annotation.Models.AnnotationModels; using GroupDocs.Annotation.Options; +``` + +Now that we have the prerequisites covered, let's break down the process of adding text squiggly annotations into multiple steps. + +## Step 1: Define Output Path + +Define the path where the annotated document will be saved. + +```csharp +string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); +``` + +## Step 2: Initialize Annotator -namespace GroupDocs.Annotation.Examples.CSharp.BasicUsage.AddAnnotationToTheDocument +Initialize the Annotator object by providing the input document path. + +```csharp +using (Annotator annotator = new Annotator("input.pdf")) { - /// - /// This example demonstrates adding text squiggly annotation. - /// - class AddTextSquigglyAnnotation + // Annotation code goes here +} +``` + +## Step 3: Create Squiggly Annotation + +Create a SquigglyAnnotation object and specify its properties. + +```csharp +SquigglyAnnotation squiggly = new SquigglyAnnotation +{ + CreatedOn = DateTime.Now, + FontColor = 65535, + Message = "This is squiggly annotation", + Opacity = 0.7, + PageNumber = 0, + BackgroundColor = 16761035, + SquigglyColor = 1422623, + Points = new List + { + new Point(80, 730), new Point(240, 730), new Point(80, 650), new Point(240, 650) + }, + Replies = new List { - public static void Run() + new Reply { - string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); - - using (Annotator annotator = new Annotator("input.pdf")) - { - SquigglyAnnotation squiggly = new SquigglyAnnotation - { - CreatedOn = DateTime.Now, - FontColor = 65535, - Message = "This is squiggly annotation", - Opacity = 0.7, - PageNumber = 0, - BackgroundColor = 16761035, - SquigglyColor = 1422623, // works supported only Word and PDF documents - Points = new List - { - new Point(80, 730), new Point(240, 730), new Point(80, 650), new Point(240, 650) - }, - Replies = new List - { - new Reply - { - Comment = "First comment", - RepliedOn = DateTime.Now - }, - new Reply - { - Comment = "Second comment", - RepliedOn = DateTime.Now - } - } - }; - annotator.Add(squiggly); - annotator.Save(outputPath); - } - Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); + Comment = "First comment", + RepliedOn = DateTime.Now + }, + new Reply + { + Comment = "Second comment", + RepliedOn = DateTime.Now } } -} +}; +``` +## Step 4: Add Annotation + +Add the created squiggly annotation to the document. + +```csharp +annotator.Add(squiggly); +``` + +## Step 5: Save Document + +Save the annotated document to the specified output path. + +```csharp +annotator.Save(outputPath); +``` + +## Step 6: Display Confirmation + +Display a message confirming the successful saving of the annotated document. + +```csharp +Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); ``` + +## Conclusion + +In conclusion, Groupdocs.Annotation for .NET provides developers with a robust set of tools for integrating document annotation functionalities into their .NET applications seamlessly. By following this step-by-step guide, you can effortlessly add text squiggly annotations to your documents, enhancing collaboration and document review processes. + +## FAQ's + +### Q: Can Groupdocs.Annotation support annotation on various file formats?## + +A: Yes, Groupdocs.Annotation supports annotation on a wide range of file formats, including PDFs, Word documents, Excel sheets, and more. + +### Q: Is Groupdocs.Annotation compatible with both desktop and web applications?## + +A: Absolutely! Groupdocs.Annotation can be seamlessly integrated into both desktop and web applications, offering flexibility and versatility. + +### Q: Are there any licensing options available for Groupdocs.Annotation?## + +A: Yes, Groupdocs.Annotation offers flexible licensing options tailored to suit individual or enterprise needs, including temporary licenses for trial purposes. + +### Q: Can annotations created using Groupdocs.Annotation be customized?## + +A: Certainly! Groupdocs.Annotation provides extensive customization options for annotations, allowing developers to tailor annotations to their specific requirements. + +### Q: Does Groupdocs.Annotation offer support and documentation for developers?## + +A: Indeed! Groupdocs.Annotation provides comprehensive documentation and dedicated support forums to assist developers in utilizing its features effectively. diff --git a/content/english/net/unlocking-annotation-power/add-text-strikeout-annotation/_index.md b/content/english/net/unlocking-annotation-power/add-text-strikeout-annotation/_index.md index 8cd713f..044ae1d 100644 --- a/content/english/net/unlocking-annotation-power/add-text-strikeout-annotation/_index.md +++ b/content/english/net/unlocking-annotation-power/add-text-strikeout-annotation/_index.md @@ -2,13 +2,21 @@ title: Add Text Strikeout Annotation to Document linktitle: Add Text Strikeout Annotation to Document second_title: GroupDocs.Annotation .NET API -description: +description: Learn how to add text strikeout annotations to documents using GroupDocs.Annotation for .NET. Enhance collaboration and document review processes efficiently. type: docs weight: 26 url: /net/unlocking-annotation-power/add-text-strikeout-annotation/ --- +## Introduction +In this tutorial, we'll explore how to add a text strikeout annotation to a document using GroupDocs.Annotation for .NET. This library provides powerful tools for annotating various document types, enhancing collaboration and document review processes. +## Prerequisites +Before we begin, ensure you have the following prerequisites: +1. GroupDocs.Annotation for .NET: Install the library. You can download it from [here](https://releases.groupdocs.com/annotation/net/). +2. Development Environment: Set up a suitable development environment for .NET development. +3. Document: Have a document ready to annotate, such as a PDF file. -## Complete Source Code +## Importing Namespaces +First, import the necessary namespaces to access the functionalities of GroupDocs.Annotation: ```csharp using System; using System.Collections.Generic; @@ -16,52 +24,70 @@ using System.IO; using GroupDocs.Annotation.Models; using GroupDocs.Annotation.Models.AnnotationModels; using GroupDocs.Annotation.Options; +``` -namespace GroupDocs.Annotation.Examples.CSharp.BasicUsage.AddAnnotationToTheDocument +Now, let's break down the process of adding a text strikeout annotation into multiple steps: +## Step 1: Define Output Path +```csharp +string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); +``` +Here, we define the output path where the annotated document will be saved. +## Step 2: Initialize Annotator +```csharp +using (Annotator annotator = new Annotator("input.pdf")) +``` +Initialize the Annotator object by providing the path to the input document (PDF file in this case). +## Step 3: Create Strikeout Annotation +```csharp +StrikeoutAnnotation strikeout = new StrikeoutAnnotation { - /// - /// This example demonstrates adding text strikeout annotation. - /// - class AddTextStrikeoutAnnotation + CreatedOn = DateTime.Now, + FontColor = 65535, + Message = "This is strikeout annotation", + Opacity = 0.7, + PageNumber = 0, + BackgroundColor = 16761035, + Points = new List { - public static void Run() + new Point(80, 730), new Point(240, 730), new Point(80, 650), new Point(240, 650) + }, + Replies = new List + { + new Reply { - string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); - - using (Annotator annotator = new Annotator("input.pdf")) - { - StrikeoutAnnotation strikeout = new StrikeoutAnnotation - { - CreatedOn = DateTime.Now, - FontColor = 65535, - Message = "This is strikeout annotation", - Opacity = 0.7, - PageNumber = 0, - BackgroundColor = 16761035, - Points = new List - { - new Point(80, 730), new Point(240, 730), new Point(80, 650), new Point(240, 650) - }, - Replies = new List - { - new Reply - { - Comment = "First comment", - RepliedOn = DateTime.Now - }, - new Reply - { - Comment = "Second comment", - RepliedOn = DateTime.Now - } - } - }; - annotator.Add(strikeout); - annotator.Save(outputPath); - } - Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); + Comment = "First comment", + RepliedOn = DateTime.Now + }, + new Reply + { + Comment = "Second comment", + RepliedOn = DateTime.Now } } -} - +}; +``` +Create a StrikeoutAnnotation object with desired properties such as message, opacity, page number, background color, points (coordinates), and replies. +## Step 4: Add Annotation +```csharp +annotator.Add(strikeout); ``` +Add the created strikeout annotation to the document. +## Step 5: Save Document +```csharp +annotator.Save(outputPath); +``` +Save the annotated document to the specified output path. + +## Conclusion +In this tutorial, we learned how to add a text strikeout annotation to a document using GroupDocs.Annotation for .NET. This powerful library enables efficient document annotation, enhancing collaboration and document review processes. +## FAQ's +### Is GroupDocs.Annotation compatible with various document formats? +Yes, GroupDocs.Annotation supports a wide range of document formats including PDF, Word, Excel, PowerPoint, and more. +### Can I customize the appearance of annotations? +Absolutely, you can customize annotation properties such as color, opacity, font size, and more according to your requirements. +### Does GroupDocs.Annotation provide collaboration features? +Yes, GroupDocs.Annotation facilitates collaboration by allowing users to add comments, replies, and annotations to documents. +### Is there a free trial available? +Yes, you can avail of a free trial from [here](https://releases.groupdocs.com/). +### Where can I get support for GroupDocs.Annotation? +You can get support from the [GroupDocs.Annotation forum](https://forum.groupdocs.com/c/annotation/10). diff --git a/content/english/net/unlocking-annotation-power/add-text-underline-annotation/_index.md b/content/english/net/unlocking-annotation-power/add-text-underline-annotation/_index.md index c195f55..73246dd 100644 --- a/content/english/net/unlocking-annotation-power/add-text-underline-annotation/_index.md +++ b/content/english/net/unlocking-annotation-power/add-text-underline-annotation/_index.md @@ -2,13 +2,20 @@ title: Add Text Underline Annotation to Document linktitle: Add Text Underline Annotation to Document second_title: GroupDocs.Annotation .NET API -description: +description: Learn how to add text underline annotations to documents using GroupDocs.Annotation for .NET. Enhance collaboration and communication effortlessly. type: docs weight: 27 url: /net/unlocking-annotation-power/add-text-underline-annotation/ --- +## Introduction +In this tutorial, we'll walk through the process of adding a text underline annotation to a document using GroupDocs.Annotation for .NET. Text underline annotations can be useful for emphasizing specific parts of a document, such as important passages or key points. +## Prerequisites +Before we begin, ensure that you have the following prerequisites installed: +1. GroupDocs.Annotation for .NET: Download and install GroupDocs.Annotation for .NET from [here](https://releases.groupdocs.com/annotation/net/). +2. .NET Framework: Make sure you have .NET Framework installed on your system. -## Complete Source Code +## Importing Namespaces +First, let's import the necessary namespaces into our project: ```csharp using System; using System.Collections.Generic; @@ -16,53 +23,71 @@ using System.IO; using GroupDocs.Annotation.Models; using GroupDocs.Annotation.Models.AnnotationModels; using GroupDocs.Annotation.Options; +``` -namespace GroupDocs.Annotation.Examples.CSharp.BasicUsage.AddAnnotationToTheDocument +Now, let's break down the example into multiple steps: +## Step 1: Define Output Path +```csharp +string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); +``` +In this step, we define the output path where the annotated document will be saved. +## Step 2: Initialize Annotator +```csharp +using (Annotator annotator = new Annotator("input.pdf")) +``` +Here, we initialize an instance of the `Annotator` class by providing the input document's path. +## Step 3: Create Underline Annotation +```csharp +UnderlineAnnotation underline = new UnderlineAnnotation { - /// - /// This example demonstrates adding text underline annotation. - /// - class AddTextUnderlineAnnotation + CreatedOn = DateTime.Now, + FontColor = 65535, + Message = "This is underline annotation", + Opacity = 0.7, + PageNumber = 0, + BackgroundColor = 16761035, + UnderlineColor = 1422623, // works supported only Word and PDF documents + Points = new List { - public static void Run() + new Point(80, 730), new Point(240, 730), new Point(80, 650), new Point(240, 650) + }, + Replies = new List + { + new Reply { - string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); - - using (Annotator annotator = new Annotator("input.pdf")) - { - UnderlineAnnotation underline = new UnderlineAnnotation - { - CreatedOn = DateTime.Now, - FontColor = 65535, - Message = "This is underline annotation", - Opacity = 0.7, - PageNumber = 0, - BackgroundColor = 16761035, - UnderlineColor = 1422623, // works supported only Word and PDF documents - Points = new List - { - new Point(80, 730), new Point(240, 730), new Point(80, 650), new Point(240, 650) - }, - Replies = new List - { - new Reply - { - Comment = "First comment", - RepliedOn = DateTime.Now - }, - new Reply - { - Comment = "Second comment", - RepliedOn = DateTime.Now - } - } - }; - annotator.Add(underline); - annotator.Save(outputPath); - } - Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); + Comment = "First comment", + RepliedOn = DateTime.Now + }, + new Reply + { + Comment = "Second comment", + RepliedOn = DateTime.Now } } -} - +}; +``` +This step involves creating an `UnderlineAnnotation` object with various properties such as font color, message, opacity, page number, background color, underline color, points, and replies. +## Step 4: Add Annotation to Document +```csharp +annotator.Add(underline); ``` +Here, we add the underline annotation to the document. +## Step 5: Save Annotated Document +```csharp +annotator.Save(outputPath); +``` +Finally, we save the annotated document to the specified output path. + +## Conclusion +In this tutorial, we learned how to add a text underline annotation to a document using GroupDocs.Annotation for .NET. This powerful library provides various annotation options to enhance document collaboration and communication. +## FAQ's +### Can I customize the appearance of the underline annotation? +Yes, you can customize properties such as color, opacity, and position according to your requirements. +### Is GroupDocs.Annotation compatible with different document formats? +Yes, GroupDocs.Annotation supports a wide range of document formats including Word and PDF. +### Can I add multiple annotations to a single document? +Absolutely, GroupDocs.Annotation allows you to add multiple annotations of different types to a document. +### Is there a free trial available for GroupDocs.Annotation? +Yes, you can access the free trial version from [here](https://releases.groupdocs.com/). +### Where can I get support for GroupDocs.Annotation? +You can get support from the GroupDocs.Annotation community forum [here](https://forum.groupdocs.com/c/annotation/10). diff --git a/content/english/net/unlocking-annotation-power/add-watermark-annotation/_index.md b/content/english/net/unlocking-annotation-power/add-watermark-annotation/_index.md index 4d3cf1b..dd299c3 100644 --- a/content/english/net/unlocking-annotation-power/add-watermark-annotation/_index.md +++ b/content/english/net/unlocking-annotation-power/add-watermark-annotation/_index.md @@ -2,67 +2,128 @@ title: Add Watermark Annotation to Document linktitle: Add Watermark Annotation to Document second_title: GroupDocs.Annotation .NET API -description: +description: Learn how to add watermark annotations to your documents effortlessly using GroupDocs.Annotation for .NET. Enhance document clarity and security. type: docs weight: 28 url: /net/unlocking-annotation-power/add-watermark-annotation/ --- +## Introduction +In this tutorial, we'll walk through the process of adding a watermark annotation to a document using GroupDocs.Annotation for .NET. Watermark annotations are useful for indicating the status of a document, marking it as confidential, or adding any other relevant information. + +## Prerequisites + +Before we begin, make sure you have the following: + +1. GroupDocs.Annotation for .NET: You can download it from [here](https://releases.groupdocs.com/annotation/net/). +2. Visual Studio: Ensure you have Visual Studio installed on your system. +3. Basic Knowledge of C#: Familiarity with C# programming language is necessary to understand and implement the code examples. + +## Import Namespaces + +Before we start coding, let's import the necessary namespaces: -## Complete Source Code ```csharp using System; using System.Collections.Generic; using System.IO; using GroupDocs.Annotation.Models; using GroupDocs.Annotation.Models.AnnotationModels; +``` + +Now, let's break down the process of adding a watermark annotation into multiple steps: + +## Step 1: Define Output Path + +First, we need to define the output path where the annotated document will be saved. We'll use the `Path` class from `System.IO` namespace to combine the output directory path with the filename. + +```csharp +string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); +``` -namespace GroupDocs.Annotation.Examples.CSharp.BasicUsage.AddAnnotationToTheDocument +## Step 2: Initialize Annotator + +Next, we'll initialize the annotator by providing the input document's path. This will allow us to add annotations to the document. + +```csharp +using (Annotator annotator = new Annotator("input.pdf")) { - /// - /// This example demonstrates adding watermark annotation. - /// - class AddWatermarkAnnotation + // Annotation code will go here +} +``` + +## Step 3: Create Watermark Annotation + +Now, let's create a watermark annotation object with the desired properties such as angle, position, text, font color, opacity, etc. + +```csharp +WatermarkAnnotation watermark = new WatermarkAnnotation +{ + Angle = 75, + Box = new Rectangle(200, 200, 100, 50), + CreatedOn = DateTime.Now, + Text = "Watermark", + FontColor = 65535, + FontSize = 12, + Message = "This is watermark annotation", + Opacity = 0.7, + PageNumber = 0, + AutoScale = true, + HorizontalAlignment = HorizontalAlignment.Center, + VerticalAlignment = VerticalAlignment.Center, + Replies = new List { - public static void Run() + new Reply + { + Comment = "First comment", + RepliedOn = DateTime.Now + }, + new Reply { - string outputPath = Path.Combine(Constants.GetOutputDirectoryPath(), "result" + Path.GetExtension("input.pdf")); - - using (Annotator annotator = new Annotator("input.pdf")) - { - WatermarkAnnotation watermark = new WatermarkAnnotation - { - Angle = 75, - Box = new Rectangle(200, 200, 100, 50), - CreatedOn = DateTime.Now, - Text = "Watermark", - FontColor = 65535, - FontSize = 12, - Message = "This is watermark annotation", - Opacity = 0.7, - PageNumber = 0, - AutoScale = true, - HorizontalAlignment = HorizontalAlignment.Center, - VerticalAlignment = VerticalAlignment.Center, - Replies = new List - { - new Reply - { - Comment = "First comment", - RepliedOn = DateTime.Now - }, - new Reply - { - Comment = "Second comment", - RepliedOn = DateTime.Now - } - } - }; - annotator.Add(watermark); - annotator.Save(outputPath); - } - Console.WriteLine($"\nDocument saved successfully.\nCheck output in {outputPath}."); + Comment = "Second comment", + RepliedOn = DateTime.Now } } -} +}; +``` + +## Step 4: Add Watermark Annotation + +Now, we'll add the watermark annotation to the document using the `Add` method of the annotator object. + +```csharp +annotator.Add(watermark); +``` + +## Step 5: Save Document + +Finally, we'll save the annotated document to the specified output path. +```csharp +annotator.Save(outputPath); ``` + +## Conclusion + +In this tutorial, we learned how to add a watermark annotation to a document using GroupDocs.Annotation for .NET. Watermark annotations are a valuable tool for marking documents with relevant information or indicating their status. + +## FAQ's + +### Q: Can I customize the appearance of the watermark annotation? + +A: Yes, you can customize various properties such as text, font size, color, opacity, position, etc., to tailor the watermark according to your requirements. + +### Q: Is GroupDocs.Annotation for .NET compatible with different document formats? + +A: Yes, GroupDocs.Annotation supports a wide range of document formats including PDF, Microsoft Word, Excel, PowerPoint, and image formats. + +### Q: Can I add multiple annotations to a single document? + +A: Absolutely, GroupDocs.Annotation allows you to add multiple annotations of different types to a single document, enabling comprehensive document markup. + +### Q: Does GroupDocs.Annotation provide support for collaborative annotation? + +A: Yes, GroupDocs.Annotation facilitates collaborative annotation by allowing users to add comments, replies, and annotations, fostering effective collaboration among team members. + +### Q: Is there a trial version available for GroupDocs.Annotation for .NET? + +A: Yes, you can download a free trial version from [here](https://releases.groupdocs.com/).