【问题标题】:DocuSign SOAP API - Set Tab Fonts does not Change FontDocuSign SOAP API - 设置选项卡字体不更改字体
【发布时间】:2014-08-13 00:24:57
【问题描述】:

我有一个带有 Arial 10 字体的 PDF 文档,对于 DocuSign 签名、名称和日期选项卡,我设置了相同的字体,但是在签署文档时,字体似乎没有改变。

我在 Windows 上使用带有 C# 的 SOAP API。如何更改标签的字体?谢谢。

                        tab3 = new DocuSignAPI.Tab();
                        tab3.RecipientID = rcpt1.ID;
                        tab3.PageNumber = "1";
                        tab3.DocumentID = docId;
                        tab3.Type = DocuSignAPI.TabTypeCode.SignHere;
                        tab3.AnchorTabItem = new DocuSignAPI.AnchorTab();
                        tab3.AnchorTabItem.AnchorTabString = "Signature:";
                        tab3.AnchorTabItem.Unit = DocuSignAPI.UnitTypeCode.Pixels;
                        tab3.AnchorTabItem.IgnoreIfNotPresent = true;
                        tab3.AnchorTabItem.UnitSpecified = true;
                        tab3.AnchorTabItem.YOffset = 0;
                        tab3.AnchorTabItem.XOffset = 200;
                        tab3.Font = DocuSignAPI.Font.Arial;
                        tab3.FontSize = DocuSignAPI.FontSize.Size10;

【问题讨论】:

    标签: fonts tabs font-size docusignapi


    【解决方案1】:

    我必须再指定两个参数。这解决了它。

                            tab3.FontSpecified = true;
                            tab3.FontSizeSpecified = true;
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-11-01
      相关资源
      最近更新 更多