Search for Form Field e-signatures

To search for Form Fields e-signatures inside document you should pass instance ofΒ FormFieldSearchOptionsΒ classΒ to a Search method of GroupDocs.Signature.
Here are the guide for searching Form Field e-signatures:

This example shows how to search for Form Field signatures in the document.

using (Signature signature = new Signature("signed.pdf"))
{
    // search for signatures in document
    List<FormFieldSignature> signatures = signature.Search<FormFieldSignature>(SignatureType.FormField);

    foreach (var formFieldSignature in signatures)
    {
        Console.WriteLine("FormField signature found. Name : {0}. Value: {1}", formFieldSignature.Name, formFieldSignature.Value);
    }
}

Advanced Usage Topics

To learn more about document eSign features, please refer to theΒ advanced usage section.

More resources

GitHub Examples

You may easily run the code above and see the feature in action in ourΒ GitHub examples:

Free Online Apps

Along with the full-featured .NET library, we provide simple but powerful free online apps.

To sign PDF, Word, Excel, PowerPoint, and other documents you can use the online apps from the GroupDocs.Signature App Product Family.