Select from list TextSignature object(s) that should be updated;
Call Signature object update method and pass one or several signatures to it.
This example shows how to update Text signature that was found using search method.
Signaturesignature=newSignature("sampleSigned.pdf");try{TextSearchOptionsoptions=newTextSearchOptions();// search for text signatures in document
List<TextSignature>signatures=signature.search(TextSignature.class,options);if(signatures.size()>0){TextSignaturetextSignature=signatures.get(0);// change Text property
textSignature.setText("John Walkman");// change position
textSignature.setLeft(textSignature.getLeft()+50);textSignature.setTop(textSignature.getTop()+50);// change size. Please note not all documents support changing signature size
textSignature.setWidth(200);textSignature.setHeight(100);booleanresult=signature.update("sampleSigned.pdf",textSignature);if(result){System.out.print("Signature with Text '"+textSignature.getText()+"' was updated in the document ['sampleSigned.pdf'].");}else{System.out.print("Signature was not updated in the document! Signature with Text '"+textSignature.getText()+"' was not found!");}}}catch(Exceptione){thrownewGroupDocsSignatureException(e.getMessage());}
More resources
Advanced Usage Topics
To learn more about document eSign features, please refer to the advanced usage section.
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples:
Along with full-featured .NET library we provide simple, but powerful free Apps. You are welcome to eSign PDF, Word, Excel, PowerPoint documents with free to use online GroupDocs Signature App.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.