Browse our Products Toggle navigation
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.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
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.