PdfContentEditor.DeleteAttachments

PdfContentEditor.DeleteAttachments method

تحذف جميع المرفقات في مستند PDF.

public void DeleteAttachments()

Examples

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

See Also