Im using the Docusign eSignature SDK (c#) to create envelopes for recipients for signing.
I require my recipient to either sign the document by selecting a signature or by free hand drawing signature.
Currently the only option users can select is a predefined signature(image), I see no option to choose to draw as well as select a predefined signature. (requirement is I need to give both options)
I have gone into the Settings page then Signing Settings and configured the Signature Adoption configuration, and enabled the option for drawn eSignatures as suggested here : Drawn Signature, but this didn't work for me.
This is my code: - as you can see I just have one signature anchor , and one signed date anchor :
SignHere signHere = new SignHere
{
AnchorString = "**signature_1**",
AnchorUnits = "pixels",
AnchorYOffset = "10",
AnchorXOffset = "20"
};
DateSigned mydate = new DateSigned
{
AnchorString = "**signed_date**",
AnchorUnits = "pixels",
AnchorYOffset = "2",
AnchorXOffset = "20",
FontSize = "Size8"
};
// Your recipients can navigate from tab to tab either by scrolling through your document, or you can set a tab order
Tabs signerTabs = new Tabs
{
SignHereTabs = new List<SignHere> { signHere },
DateSignedTabs = new List<DateSigned> { mydate }
};
Is there something i am missing here ? I seem to have access on my account to enable the Draw Signature option. But only get the option to select a predefined signature.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745353242a4623964.html
评论列表(0条)