Class PdfTargetDictionary
- Namespace
- iTextSharp.text.pdf.collection
- Assembly
- iTextSharp.LGPLv2.Core.dll
public class PdfTargetDictionary : PdfDictionary
- Inheritance
-
PdfTargetDictionary
- Inherited Members
Constructors
PdfTargetDictionary(bool)
Creates a dictionary referring to a target document.
public PdfTargetDictionary(bool child)
Parameters
child
boolif false, this refers to the parent document; if true, this refers to a child document, and you'll have to specify where to find the child using the other methods of this class
PdfTargetDictionary(PdfTargetDictionary)
Creates dictionary referring to a target document that is the parent of the current document.
public PdfTargetDictionary(PdfTargetDictionary nested)
Parameters
nested
PdfTargetDictionarynull if this is the actual target, another target if this is only an intermediate target.
Properties
AdditionalPath
If this dictionary refers to an intermediate target, you can add the next target in the sequence.
public PdfTargetDictionary AdditionalPath { set; }
Property Value
EmbeddedFileName
If this dictionary refers to a child that is a document level attachment, you need to specify the name that was used to attach the document.
public string EmbeddedFileName { set; }
Property Value
FileAttachmentIndex
If this dictionary refers to a child that is a file attachment added to a page, you need to specify the page with setFileAttachmentPage or setFileAttachmentPageName, and then specify the index of the attachment added to this page (or use setFileAttachmentName).
public int FileAttachmentIndex { set; }
Property Value
FileAttachmentName
If this dictionary refers to a child that is a file attachment added to a page, you need to specify the page with setFileAttachmentPage or setFileAttachmentPageName, and then specify the name of the attachment added to this page (or use setFileAttachmentIndex).
public string FileAttachmentName { set; }
Property Value
FileAttachmentPage
If this dictionary refers to a child that is a file attachment added to a page, you need to specify the page number (or use setFileAttachmentPagename to specify a named destination). Once you have specified the page, you still need to specify the attachment using another method.
public int FileAttachmentPage { set; }
Property Value
FileAttachmentPagename
If this dictionary refers to a child that is a file attachment added to a page, you need to specify the name of the page (or use setFileAttachmentPage to specify the page number). Once you have specified the page, you still need to specify the attachment using another method.
public string FileAttachmentPagename { set; }