IPWorks EDI 2020 Kotlin Edition

Questions / Feedback?

Attachments Property

Collection of files attached to the current PDF.

Syntax

public val attachments: MutablePDFAttachmentList

Remarks

This collection contains a list of PDFAttachment objects with information about each attached file.

Creating and adding a new PDFAttachment:

PDFAttachment attachment = new PDFAttachment("testfile.xml", "\file.xml", "text/xml");
attachment.Description = "This is a description";
attachment.Relationship = "Source";
pdfxml.Attachments.Add(attachment);

This property is not available at design time.

Copyright (c) 2021 /n software inc. - All rights reserved.
IPWorks EDI 2020 Kotlin Edition - Version 20.0 [Build 7941]