Delete all the attachments in the pdf documents.
public
void DeleteAttachments();
Example
[C#]
PdfContentEditor editor = new PdfContentEditor();
string TestPath = @"E:\pdfkit\";
editor.BindPdf(TestPath + "PdfContentEditor.DeleteAttachments.in.pdf");
editor.DeleteAttachments();
editor.Save(TestPath + "delete_Attachments.pdf");
[Visual Basic]
Dim editor As PdfContentEditor = New PdfContentEditor()
Dim TestPath