Discuss this help topic in SecureBlackbox Forum

TElPDFDocument.AddSignature

TElPDFDocument     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Adds a signature to the list.

Declaration

[C#]
    int AddSignature();
    int AddSignature(int EmptySignatureField);

[VB.NET]
    Function AddSignature() As Integer
    Function AddSignature(ByVal EmptySignatureField As Integer) As Integer

[Pascal]
    function AddSignature : integer; overload;
    function AddSignature(EmptySignatureField : integer) : integer; overload;

[C++]
    int32_t AddSignature();
    int32_t AddSignature(int32_t EmptySignatureField);

[PHP]
    integer AddSignature()
    integer AddSignature(integer $EmptySignatureField)

[Java]
    int addSignature(int EmptySignatureField);
    int addSignature();

Parameters

  • EmptySignatureField - index of the empty signature field in the list

Return value

    Index of the added signature in the list.

Description

    Use this method to add one more signature to the list of signatures.
    Use the second variant to sign empty form field intended for signature. See EmptySignatureFields property.

See also:     ClearSignatures     RemoveSignature     Signatures     SignatureCount    

Discuss this help topic in SecureBlackbox Forum