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:
Create new instance of Signature class and pass source document path as a constructor parameter.
Instantiate the FormFieldSearchOptions object according to your requirements and specify additional search options (if needed);
This example shows how to search for Form Field signatures in the document.
using(Signaturesignature=newSignature("signed.pdf")){// search for signatures in documentList<FormFieldSignature>signatures=signature.Search<FormFieldSignature>(SignatureType.FormField);foreach(varformFieldSignatureinsignatures){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: