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: