This example shows how to make advanced search for Form Field signatures in the document.
using(Signaturesignature=newSignature("signed.pdf")){FormFieldSearchOptionsoptions=newFormFieldSearchOptions(){Value="Value1",AllPages=true,Name="TestField",Type=FormFieldType.Text};// search for signatures in documentList<FormFieldSignature>signatures=signature.Search<FormFieldSignature>(options);Console.WriteLine("\nSource document contains following signatures.");foreach(varformFieldSignatureinsignatures){Console.WriteLine("FormField signature found. Name : {0}. Value: {1}",formFieldSignature.Name,formFieldSignature.Value);}}
More resources
GitHub Examples
You may easily run the code above and see the feature in action in ourΒ GitHub examples: