DocuSign、xPosition 和 yPosition 上的选项卡问题是否有任何选项? [英] Tab issue on DocuSign, xPosition and yPosition are there any option?

查看:9
本文介绍了DocuSign、xPosition 和 yPosition 上的选项卡问题是否有任何选项?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 DocuSign 的 REST API,到目前为止,我已成功发送签名请求,但是在我的文档中放置 DocuSign 选项卡有时会很痛苦,需要反复试验.使用标签的 xPositionyPosition 属性是标签放置的唯一选择吗?

I'm using DocuSign's REST API and so far so I'm successfully sending signature requests, however positioning the DocuSign tabs in my documents is sometimes a pain and requires trial and error. Is using the xPosition and yPosition properties of the tabs the only option I have for tab placement?

推荐答案

DocuSign 实际上提供了一个名为Anchor Tagging"的漂亮功能,可以帮助解决这个问题.使用锚标记,您可以根据文档内容本身在文档中放置 DocuSign 选项卡.因此,例如,如果您需要在文档中的某个地方签名,那么您可以将文本请在此处签名"锚定到该文本并将标签放置在那里,而无需尝试猜测 X 和 Y 坐标.

DocuSign actually provides a nifty features called "Anchor Tagging" which helps solve this problem. With Anchor Tagging you can have DocuSign tabs placed in your documents based on the document content itself. So for instance, if somewhere in your document you need signed you have the text "Please Sign Here" you can anchor to that text and have your tabs placed there without trying to guess the X and Y coordinates.

DocuSign 开发人员的 Features -> Stick-eTabs 部分提供了如何执行此操作的示例居中,只需向下滚动并查看锚标记部分.

There's examples of how to this on the Features -> Stick-eTabs section of DocuSign's Developer Center, just scroll down and see the anchor tagging section.

您还可以选择从文档文本中进一步偏移,例如,如果您希望签名标签向右 1 英寸,向下 0.5 英寸.你会像这样发送一个 JSON 请求正文:

You have the option of further offsetting from the document text also, like if you want your signature tab to be 1 inch to the right and .5 inches down, for example. You would send a JSON request body like this:

"tabs": {
  "signHereTabs": [
    {
    "anchorString": "Please Sign Here:",
    "anchorXOffset": "1",
    "anchorYOffset": "0.5",
    "anchorIgnoreIfNotPresent": "false",
    "anchorUnits": "inches"
    }
  ]
}

这篇关于DocuSign、xPosition 和 yPosition 上的选项卡问题是否有任何选项?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆