Attachment

Represents a Attachments present in PDFDocument

public class Attachment

Inheritance: ObjectAttachment

Licensing Info

This class is a DynamicPDF PrintManager feature. One of the following is required for non-evaluation usage:

Examples

The following examples retrieves the attachment files in the PDFDocument.

using System;
using ceTe.DynamicPDF.Printing;

class MyClass
{
    static void Main()
    {
        // Create an InputPdf object to hold the source PDF
        InputPdf inputPdf = new InputPdf(@"C:\MyDocument.pdf");
       
        //Getting the AttachmentFiles present in PDFDocument
	    Attachment[] files = inputPdf.Attachments;

        //Gets the InputPdf file present in AttachmentFiles
        InputPdf inputPdfFile = files[0].TryGetPDF();
    }
}

Properties

FileNameGets the Filenames of the Attachment Files present in PDFDocument.

Methods

Equals(Object)Determines whether the specified Object is equal to the current Object .
(Inherited from Object)
GetHashCode()Serves as a hash function for a particular type.
(Inherited from Object)
GetType()Gets the Type of the current instance.
(Inherited from Object)
ToString()Returns a String that represents the current Object .
(Inherited from Object)
TryGetPdf()Gets the Data of the Attachment Files.
TryGetPdf(String)Gets the InputPdf file of the Attachment Files.

See Also

ceTe.DynamicPDF.Printing