relationship property

Get the file relationship.

Implementation

PdfAttachmentRelationship get relationship =>
    PdfEmbeddedFileSpecificationHelper.getHelper(this).relationship;
void 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)));
}