简体   繁体   English

如何在 Docusing 信封中添加名称字段?

[英]How to add Name field in Docusing envelope?

Currently i can create envelope with signers dynamically, now i want to add Name field above the signer, i using below code to set Auto search Text.目前我可以动态创建带有签名者的信封,现在我想在签名者上方添加名称字段,我使用下面的代码来设置自动搜索文本。

         ' Document
 Dim doc1 As Document = New Document With {
        .DocumentBase64 = doc1DocxBytes,
        .Name = ext1(0),
        .FileExtension = ext1(1),
        .DocumentId = "1"
    }
    
    env.Documents = New List(Of Document) From {
           doc1
    }
    
    'Signer1
    Dim signer1 As Signer = New Signer With {
        .Email = signerEmail,
        .Name = signerName,
        .RecipientId = "1",
        .RoutingOrder = "1"
    }
    
     Dim signHere212 As SignHere = New SignHere With {
        .AnchorString = "For and on behalf of the vendor",
        .AnchorUnits = "pixels",
        .AnchorYOffset = "70",
        .AnchorXOffset = "20"
    }
    
      Dim fullName212 As FullName = New FullName With {
    .AnchorString = "For and on behalf of the vendor",
    .AnchorUnits = "pixels",
    .AnchorYOffset = "100",
    .AnchorXOffset = "20"
}


     Dim signer1Tabs As Tabs = New Tabs With {
        .SignHereTabs = New List(Of SignHere) From {
           signHere212
          },
       .FullNameTabs = New List(Of FullName) From {
        fullName212
   }
   }
   
   signer1.Tabs = signer1Tabs
   
   
   Dim recipients As Recipients = New Recipients With {
        .Signers = New List(Of Signer) From {
            signer1
            }
    }
    
     env.Recipients = recipients
        env.Status = "sent"
        
             Dim envelopeEvents = New List(Of EnvelopeEvent)()
        envelopeEvents.Add(New EnvelopeEvent With {
        .EnvelopeEventStatusCode = "completed",
        .IncludeDocuments = "true"
    })
        eventNotification.EnvelopeEvents = envelope



       

From above code i placed sign on the top of "For and on behalf of the vendor", now i want Name field to add Name when signer sign the document.Please provide piece of code.从上面的代码中,我将签名放在“代表供应商”的顶部,现在我希望名称字段在签名者签署文档时添加名称。请提供一段代码。

    Dim fullName212 As FullName = New FullName With {
            .AnchorString = "For and on behalf of the vendor",
            .AnchorUnits = "pixels",
            .AnchorYOffset = "70",
            .AnchorXOffset = "20"
        }

 Dim signer1Tabs As Tabs = New Tabs With {
        .SignHereTabs = New List(Of SignHere) From {
            signHere1
                  },

        .FullNameTabs = New List(Of FullName) From {
            fullName212
    }
  signer1.Tabs = signer1Tabs

     Dim recipients As Recipients = New Recipients With {
        .Signers = New List(Of Signer) From {
            signer1
        }
    }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM