Fonts DocuSign SOAP API-设置选项卡字体不更改字体

Fonts DocuSign SOAP API-设置选项卡字体不更改字体,fonts,tabs,font-size,docusignapi,Fonts,Tabs,Font Size,Docusignapi,我有一个Arial 10字体的PDF文档,对于DocuSign签名、姓名和日期选项卡,我设置了相同的字体,但在签名文档时,字体似乎没有改变 我在Windows上使用带C#的SOAP API。如何更改选项卡的字体?谢谢 tab3 = new DocuSignAPI.Tab(); tab3.RecipientID = rcpt1.ID; tab3.PageN

我有一个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;

我必须再指定两个参数。这就解决了问题

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