Delete

Delete(BaseSignature)

Deletes passed signature BaseSignature from the document.

public bool Delete(BaseSignature signature)
Parameter Type Description
signature BaseSignature Signature object to be removed from the document.

Return Value

Returns true if operation was successful.

Remarks

Learn more

See Also


Delete(List<BaseSignature>)

Deletes passed list of signatures BaseSignature from the document.

public DeleteResult Delete(List<BaseSignature> signatures)
Parameter Type Description
signatures List`1 List of signatures to remove from the document.

Return Value

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

Remarks

Learn more

See Also


Delete(SignatureType)

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

public DeleteResult Delete(SignatureType signatureType)
Parameter Type Description
signatureType SignatureType The type of signatures to be removed from the document.

Return Value

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

Remarks

Learn more

See Also


Delete(List<SignatureType>)

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

public DeleteResult Delete(List<SignatureType> signatureTypes)
Parameter Type Description
signatureTypes List`1 The list of signatures types to be removed from the document.

Return Value

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

Remarks

Learn more

See Also


Delete(string)

Deletes signature by its specific signature Id from the document.

public bool Delete(string signatureId)
Parameter Type Description
signatureId String The Id of the signature to be removed from the document.

Return Value

Returns true if operation was successful.

Remarks

Learn more

See Also


Delete(List<string>)

Deletes passed list of signatures BaseSignature from the document.

public DeleteResult Delete(List<string> signatureIds)
Parameter Type Description
signatureIds List`1 List of the identifiers of the signatures to be removed from the document.

Return Value

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

Remarks

Learn more

See Also