GroupDocs.Signature providesΒ overloaded DeleteΒ method that accepts list of the SignatureType enumeration values.
Please be aware that thisΒ methodΒ modifies the same document that was passed to constructor ofΒ the SignatureΒ class.
Here are the steps to delete signature by certain types from the document with GroupDocs.Signature:
Create new instance ofΒ SignatureΒ class and pass source document path or its stream as a constructor parameter;
This example shows how to delete various signatures types from the document at once.
using(Signaturesignature=newSignature("signed.pdf")){// compose the list of signature types to deletevarsignedTypes=newList<SignatureType>{SignatureType.Text,SignatureType.Image,SignatureType.Barcode,SignatureType.QrCode,SignatureType.Digital};// deleting QR-Code signatures from the document by signature typesDeleteResultresult=signature.Delete(signedTypes);if(result.Succeeded.Count>0){Console.WriteLine("Following signatures were removed:");intnumber=1;foreach(BaseSignaturetempinresult.Succeeded){Console.WriteLine($"Signature #{number++}: Type: {temp.SignatureType} Id:{temp.SignatureId}. Created: {temp.CreatedOn.ToShortDateString()}");}}else{Helper.WriteError("No one signature was deleted.");}}
More resources
GitHub Examples
You may easily run the code above and see the feature in action in ourΒ GitHub examples: