DeleteAttachments

PdfContentEditor.DeleteAttachments method

Elimina todos los archivos adjuntos en el documento PDF.

public void DeleteAttachments()

Ejemplos

PdfContentEditor editor = new PdfContentEditor();
editor.BindPdf("example.pdf");
editor.DeleteAttachments();
editor.Save("example_out.pdf");

Ver también