Discuss this help topic in SecureBlackbox Forum

TElPGPCustomUser.RemoveSignature

TElPGPCustomUser     See also     


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


Deletes one of the signatures made over the user.

Declaration

[C#]
    bool RemoveSignature(int Index);
    bool RemoveSignature(TElPGPSignature Signature);

[VB.NET]
    Function RemoveSignature(ByVal Index As Integer) As Boolean
    Function RemoveSignature(ByVal Signature As TElPGPSignature) As Boolean

[Pascal]
    function RemoveSignature(Index : integer) : boolean;
    function RemoveSignature(Signature : TElPGPSignature) : boolean;

[C++]
    bool RemoveSignature(int32_t Index);
    bool RemoveSignature(TElPGPSignature &Signature);
    bool RemoveSignature(TElPGPSignature *Signature);

[PHP]
    bool RemoveSignature(integer $Index)
    bool RemoveSignature(TElPGPSignature $Signature)

[Java]
    boolean removeSignature(int Index);
    boolean removeSignature(TElPGPSignature Signature);

Parameters

  • Index - index of the signature to be deleted in the list.
  • Signature - signature to be removed.

Return value

     True on success,
     False otherwise

Description

    Use this method to delete one of the signatures made over the user. Signature can be deleted by its index in the list or you can use TElPGPSignature as parameter.

See also:     AddSignature     Signatures     SignatureCount    

Discuss this help topic in SecureBlackbox Forum