AddDocumentAttachment

AddDocumentAttachment(string, string)

إضافة مرفق مستند بدون تعليق توضيحي .

public void AddDocumentAttachment(string fileAttachmentPath, string description)
معامليكتبوصف
fileAttachmentPathStringسيتم إرفاق مسار الملف.
descriptionStringمعلومات الوصف.

أمثلة

PdfContentEditor editor = new PdfContentEditor();
editor.BindPdf("example.pdf");
editor.AddDocumentAttachment("attachment_file.pdf", "description of attachment_file");
editor.Save("example_out.pdf");

أنظر أيضا


AddDocumentAttachment(Stream, string, string)

إضافة مرفق مستند بدون تعليق توضيحي .

public void AddDocumentAttachment(Stream fileAttachmentStream, string fileAttachmentName, 
    string description)
معامليكتبوصف
fileAttachmentStreamStreamسيتم إرفاق دفق الملف.
fileAttachmentNameStringاسم المرفق.
descriptionStringمعلومات الوصف.

أمثلة

PdfContentEditor editor = new PdfContentEditor();
editor.BindPdf("example.pdf");
using(System.IO.FileStream attStream = System.IO.File.OpenRead("attachment_file.pdf"))
{
    editor.AddDocumentAttachment(attStream, "attachment_file.pdf", "description of attachment_file");
    editor.Save("example_out.pdf");
}    

أنظر أيضا