DocuSign锚选项卡不可修改

时间:2018-12-27 17:20:38

标签: docusignapi

我在C#.NET应用程序中使用DocuSign SOAP API。我需要为公司名称添加一个anchortab。该选项卡已添加,但可由签名者修改。如何禁用以使签名者不能修改该值?代码如下。

tab18 = new DocuSignAPI.Tab();
tab18.RecipientID = rcpt1.ID;
tab18.PageNumber = "17";
tab18.DocumentID = docId;
tab18.Type = DocuSignAPI.TabTypeCode.Company;
tab18.AnchorTabItem = new DocuSignAPI.AnchorTab();
tab18.AnchorTabItem.AnchorTabString = "Company Name:";
tab18.AnchorTabItem.Unit = DocuSignAPI.UnitTypeCode.Pixels;
tab18.AnchorTabItem.YOffset = 0;
tab18.AnchorTabItem.XOffset = 50;

1 个答案:

答案 0 :(得分:0)

通过将标签的Locked属性设置为true,您应该能够实现您描述的行为。有关选项卡属性的信息,请参阅DocuSign API文档中的EnvelopeRecipientTabs页面。