A way to determine the exact position of a signature
Thursday, October 22, 2015 at 10:19amIs there a way to determine the exact position of a signature other then tryal and errors when we do this by code?
I'm refering to atPosition(val_1, val_2) lines in the code snippet below...
// Build the DocumentPackage object
DocumentPackage documentPackage = newPackageNamed("Premilimary contract - 3345") //
.withSigner(newSignerWithEmail("[email protected]") //
.withFirstName("André") //
.withLastName("Masson")) //
.withSigner(newSignerWithEmail("[email protected]") //
.withFirstName("Johanne") //
.withLastName("Chamberland")) //
.withDocument(newDocumentWithName("Premilimary contract - 3345") //
.fromFile("C:/temp/TestContract.pdf") //
.withSignature(signatureFor("[email protected]") //
.onPage(0) //
.atPosition(100, 850))
.withSignature(signatureFor("[email protected]") //
.onPage(0) //
.atPosition(100, 950)))
.build();
Reply to: A way to determine the exact position of a signature
Friday, October 23, 2015 at 10:22am