Multiple Signature Block on the same document for just one signer using SDK
Monday, December 4, 2017 at 09:40amHi,
How can i use SDK to set multiple signature block on the same document for a single signer and the values to be passed dynamically.
I have a list of coordinates which specify the position and size of my signature block for a single signer on a single document. How can i handle that with the SDK in java?
I am looking forward to loop the process of adding signature fields on the document. The size of list might also vary in every request .
Reply to: Multiple Signature Block on the same document for just one signer using SDK
Monday, December 4, 2017 at 10:25ampublic class Coordinates { private int X; private int Y; public Coordinates() { this(0,0); } public Coordinates(int X, int Y) { this.X = X; this.Y = Y; } public int getX() { return X; } public int getY() { return Y; } public void setX(int X) { this.X = X; } public void setY(int Y) { this.Y = Y; } }Of course, there are many other ways to accomplish but this should get you going nicely.