PdfContentEditor.DeleteStamp

PdfContentEditor.DeleteStamp method

Deletes multiple stamps on the specified page by stamp indexes.

public void DeleteStamp(int pageNumber, int[] index)
ParameterTypeDescription
pageNumberInt32Page number where stamp will be deleted.
indexInt32[]Stamp indexes.

Examples

PdfContentEditor contentEditor = new PdfContentEditor();
contentEditor.BindPdf("file.pdf");
contentEditor.DeleteStamp(1, new int[] { 2, 3, 5} );
contentEditor.Save("outfile.pdf");

See Also