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.3 (DLLs only)

Download   Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 204.04MB
  • Date Added:
  • 2/4/2024

Description

This ZIP file contains only the GroupDocs.Signature for .NET 24.3 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

Elevate your document signing capabilities with the recently released GroupDocs.Signature for .NET 24.3 (DLLs-only) package. This update introduces a powerful feature that streamlines signature searching within headers and footers of Word documents.

Effortlessly locate signatures positioned in headers and footers of Word documents and improve document verification efficiency with the latest .NET esigning API version. The following code example demonstrates how to perform a signature search in the header or footer of an MS Word document in your C# and VB.NET apps.


using (Signature signature = new Signature(sample.docx))
{
    // setup search options
    TextSearchOptions searchOptions = new TextSearchOptions()
    {
        // specify special pages to search on
        AllPages = false,
        // single page number
        PageNumber = 1,
        // specify text match type
        MatchType = TextMatchType.Exact,
        // specify text pattern to search
        Text = "John Smith",
        ShapePosition = ShapePosition.Header
    };

    // search document
    List<TextSignature> signatures = signature.Search<TextSignature>(searchOptions);

    // output signatures
    foreach (TextSignature textSignature in signatures)
    {
        if (textSignature != null)
        {
            Console.Write($"Found Text signature: {textSignature.SignatureImplementation} with text {textSignature.Text}.");
            Console.WriteLine($"Location at {textSignature.Left}-{textSignature.Top}. Size is {textSignature.Width}x{textSignature.Height}.");
        }
    }
}

Source*

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

 English