我有一个带有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;
答案 0 :(得分:1)
我必须再指定两个参数。并修复了它。
tab3.FontSpecified = true;
tab3.FontSizeSpecified = true;