How to default to Click to Sign signature type
Tuesday, June 9, 2020 at 02:58pmHello,
Is there a way to set the default signature type to Click to Sign at the document level ( applies to all signature fields) when creating a package using .NET SDK & using signature text tags?
using this for signature text tags instead of signature fields .EnableExtraction().WithExtractionType(ExtractionType.TEXT_TAGS)
Tried the following line of code but still the document was set with Capture Signature type signature fields.
package.Attributes = new DocumentPackageAttributes(); package.Attributes.Append("enforceCaptureSignature ", false);
When signer opens the document for signing, the signature field text says "click to sign" (from computer browser) or "Tap to sign" (from mobile phone browser) and clicking/tapping on the field brings up the signature pad on screen.
Thanks
Reply to: How to default to Click to Sign signature type
Tuesday, June 9, 2020 at 03:19pmHello Anu,
Since you are using text tags feature (guide here), the signature type is determined by your tags
A particular Signature Text Tag can be any of the following field types:
To represent in Text Tags syntax, a signature field with "Click-to-Sign" type could look like below:
{{esl_Signature1:Signer1:signature:size(200,50)}}
This will automatic create you:
(1) Click-to-Sign signature
(2) binded to the Role whose name is "Signer1"
(3) size of (200,50)
(4) signature ID and name of "Siganture1"
Duo
Reply to: Hello Anu, Since you are…
Wednesday, June 10, 2020 at 07:42amHi Duo,
I was using the "capture" instead of "signature" in the text tag. I fixed it and signature is now Click to Sign. Thanks for your help.
AV