delete method

delete

Deletes passed signature BaseSignature from the document.

Returns

Returns true if operation was successful.

def delete(self, signature):
    ...
Parameter Type Description
signature groupdocs.signature.domain.BaseSignature Signature object to be removed from the document.

delete {#System.Collections.Generic.List<GroupDocs.Signature.Domain.BaseSignature>}

def delete(self, signatures):
    ...
Parameter Type Description
signatures System.Collections.Generic.List<GroupDocs.Signature.Domain.BaseSignature>

delete

Deletes signatures of the certain type SignatureType from the document. Only signatures that were added by Sign method and marked as Signatures BaseSignature.is_signature will be removed. Following signature types are supported: Text, Image, Digital, Barcode, QR-Code

Returns

Returns DeleteResult DeleteResult with list of successfully deleted signatures and failed ones.

def delete(self, signature_type):
    ...
Parameter Type Description
signature_type groupdocs.signature.domain.SignatureType The type of signatures to be removed from the document.

delete {#System.Collections.Generic.List<GroupDocs.Signature.Domain.SignatureType>}

def delete(self, signature_types):
    ...
Parameter Type Description
signature_types System.Collections.Generic.List<GroupDocs.Signature.Domain.SignatureType>

delete

Deletes signature by its specific signature Id from the document.

Returns

Returns true if operation was successful.

def delete(self, signature_id):
    ...
Parameter Type Description
signature_id str The Id of the signature to be removed from the document.

delete {#System.Collections.Generic.List}

def delete(self, signature_ids):
    ...
Parameter Type Description
signature_ids System.Collections.Generic.List

See Also