Browse our Products

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

 

GroupDocs.Signature for .NET 24.2 (DLLs only)

Download   Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 204MB
  • Date Added:
  • 1/3/2024

Description

This ZIP file contains only the GroupDocs.Signature for .NET 24.2 assemblies. The assemblies are the same as in the MSI installer of the product of the same version.Download this if you want to use GroupDocs.Signature for .NET without the MSI installer. This ZIP download does not contain the demo projects.

File Details

Expand the functionality of your .NET document signature applications with GroupDocs.Signature API version 24.2 (DLLs-only). This DLLs package equips you to accurately place the signatures and verify the signatures positioned within Word document headers and footers.

Signature Verification Refinements

Seamlessly verify the authenticity of signatures added in Word document headers and footers with the latest .NET API release. The following C# code sample shows how to perform signature verification in MS Word files.


using (Signature signature = new Signature("sample.docx"))
{
    TextVerifyOptions options = new TextVerifyOptions()
    {
        AllPages = true, // this value is set by default
        Text = "Hello header!",
        ShapePosition = ShapePosition.Header//ShapePosition: indicates the location where the text is expected, in this case the "Header"
    };
    
    // verify document signatures
    VerificationResult result = signature.Verify(options);
    if(result.IsValid)
    {
        Console.WriteLine("\nDocument was verified successfully!");
    }
    else
    {
        Console.WriteLine("\nDocument failed verification process.");
    }
}

Source*

Optimized Signature Placement

With the .NET document signature API, you can experience optimized positioning of image, stamp, and QR code signatures in document headers and footers for augmented presentation and visual appeal.

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Signature for .NET 24.2 Release Notes.

 English