relationship property

PdfAttachmentRelationship get relationship

Get the file relationship.

Implementation

PdfAttachmentRelationship get relationship =>
    PdfEmbeddedFileSpecificationHelper.getHelper(this).relationship;
set relationship (PdfAttachmentRelationship value)

Set the file relationship.

Implementation

set relationship(PdfAttachmentRelationship value) {
  PdfEmbeddedFileSpecificationHelper.getHelper(this).relationship = value;
  PdfFileSpecificationBaseHelper.getHelper(this).dictionary!.setProperty(
    PdfDictionaryProperties.afRelationship,
    PdfName(
      PdfEmbeddedFileSpecificationHelper.getHelper(this).getEnumName(
        PdfEmbeddedFileSpecificationHelper.getHelper(this).relationship,
      ),
    ),
  );
}