DocuSign SOAP API - 标题选项卡

时间:2018-01-12 21:46:52

标签: c# docusignapi

我有以下代码在C#中将标题选项卡添加到DocuSign文档 - 而不是模板。

到目前为止,它一直在运行,但今天文档上的标签垂直显示,因此标题中的所有字符都会垂直显示。

当我在DocuSign网站上更正文档时,我才会看到这一点。当我收到签名时,它没有显示那种方式。我没有纠正任何事情,只是检查以确保一切都符合预期。

而不是 经理 它出现了 中号 一个 ñ 一个 G Ë [R

我该如何解决?代码如下。

tab13.PageNumber = "17";
tab13.DocumentID = docId;
tab13.Type = DocuSignAPI.TabTypeCode.Custom;
tab13.CustomTabType = DocuSignAPI.CustomTabType.Text;
tab13.Name = "txtTitle";
tab13.Value = mgrTitle;
tab13.CustomTabTypeSpecified = true;
tab13.AnchorTabItem = new DocuSignAPI.AnchorTab();
tab13.AnchorTabItem.AnchorTabString = "Title:";
tab13.AnchorTabItem.Unit = DocuSignAPI.UnitTypeCode.Pixels;
tab13.AnchorTabItem.UnitSpecified = false;
tab13.AnchorTabItem.IgnoreIfNotPresent = true;
tab13.AnchorTabItem.UnitSpecified = true;
tab13.AnchorTabItem.YOffset = -20;
tab13.AnchorTabItem.XOffset = 50;

enter image description here

1 个答案:

答案 0 :(得分:-1)

当我在DocuSign网站上更正文档时,我才会看到这一点。当我收到签名时,它没有显示那种方式。我没有纠正任何事情,只是检查以确保一切都符合预期。