IAttachmentCollection Interface
A collection of PDF document attachments.
Declaration
public interface IAttachmentCollection extends IObjectCollectionBase<Attachment>
Remarks
The PDF Document API enables you to embed external files inside a PDF document. Each attachment is stored as an Attachment object that defines file metadata and binary content.
Use the PdfDocument.getAttachments() method to access the collection of attachments in a document. The method returns an IAttachmentCollection object that manages Attachment instances.
Refer to the following help topic for additional information: Attach Files to PDF Documents.
Implements
com.devexpress.docs.pdf.IObjectCollectionBase<com.devexpress.docs.pdf.Attachment>