Delete Signatures of the certain type

GroupDocs.Signature provides overloaded delete method that accepts one SignatureType or list of them. 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 specific type from the document with GroupDocs.Signature:

  • Create new instance of Signature class and pass source document path or its stream as a constructor parameter;
  • Call Signature object delete method and pass certain SignatureType enumeration to it.

This example shows how to delete QR-Code signatures from the document.

Signature signature = new Signature("signed.pdf");
{
	// deleting QR-Code signatures from the document
	DeleteResult result = signature.delete("signed_out.pdf", SignatureType.QrCode);
	if (result.getSucceeded().size() > 0)
	{
		System.out.print("Following QR-Code signatures were deleted:");
		int number = 1;
		for (BaseSignature temp : result.getSucceeded())
		{
			System.out.print("Signature #"+number++ +": Type: "+temp.getSignatureType()+" Id:"+temp.getSignatureId()+", Text: "+((QrCodeSignature)temp).getText());
		}
	}
	else
	{
		System.out.print("No one QR-Code signature was deleted.");
	}
}

Advanced Usage Topics

To learn more about document eSign features, please refer to the Advanced usage section.

More resources

GitHub Examples

You may easily run the code above and see the feature in action in our GitHub examples:

Free Online App

Along with full-featured .NET library we provide simple, but powerful free Apps.

You are welcome to eSign PDF, Word, Excel, PowerPoint documents with free to use online GroupDocs Signature App.