Discuss this help topic in SecureBlackbox Forum

TElOpenOfficeDocument.AddSignature

TElOpenOfficeDocument     See also     


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


Adds signature to the document.

Declaration

[C#]
    int AddSignature(TElOpenOfficeCustomSignatureHandler Handler);
    int AddSignature(TElOpenOfficeCustomSignatureHandler Handler, bool OwnHandler);

[VB.NET]
    Function AddSignature(ByVal Handler As TElOpenOfficeCustomSignatureHandler) As Integer
    Function AddSignature(ByVal Handler As TElOpenOfficeCustomSignatureHandler, ByVal OwnHandler As Boolean) As Integer

[Pascal]
    function AddSignature(Handler : TElOpenOfficeCustomSignatureHandler) : Integer; overload;
    function AddSignature(Handler : TElOpenOfficeCustomSignatureHandler; OwnHandler : Boolean) : Integer; overload;

[C++]
    int32_t AddSignature(TElOpenOfficeCustomSignatureHandler &Handler);
    int32_t AddSignature(TElOpenOfficeCustomSignatureHandler *Handler);
    int32_t AddSignature(TElOpenOfficeCustomSignatureHandler &Handler, bool OwnHandler);
    int32_t AddSignature(TElOpenOfficeCustomSignatureHandler *Handler, bool OwnHandler);

[PHP]
    integer AddSignature(TElOpenOfficeCustomSignatureHandler $Handler)
    integer AddSignature(TElOpenOfficeCustomSignatureHandler $Handler, bool $OwnHandler)

[Java]
    int addSignature(TElOpenOfficeCustomSignatureHandler Handler, boolean OwnHandler);
    int addSignature(TElOpenOfficeCustomSignatureHandler Handler);

Parameters

  • Handler - security handler to be used for signing
  • OwnHandler - specifies if the security handler is owned by the document. If this parameter is False or omitted, user should take care of handler object disposal.

Return value

    Returns number of the newly added security handler in the list.

Description

    Use this method to add signature to the document.

See also:     RemoveSignature     Signable     SignatureHandlers    

Discuss this help topic in SecureBlackbox Forum