| DocumentTags Enumeration |
The tag for the meta data.
Currently, It can be Title, Author, Subject
Keywords, Creator, Producer, CreationDate, ModDate or "Trapped".
For detailed explanation of these tags and their respective values, please refer
to
PDF Reference 1.7, section 10.2.1, "Document Information Dictionary".
Namespace: Patagames.Pdf.EnumsAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.89.2704
Syntax Public Enumeration DocumentTags
public enum class DocumentTags
Patagames.Pdf.Enums.DocumentTags = function();
Patagames.Pdf.Enums.DocumentTags.createEnum('Patagames.Pdf.Enums.DocumentTags', false);
Members Member name | Value | Description |
---|
Title | 0 |
(Optional; PDF 1.1) The document’s title.
|
Author | 1 |
(Optional) The name of the person who created the document.
|
Subject | 2 |
(Optional; PDF 1.1) The subject of the document.
|
Keywords | 3 |
(Optional; PDF 1.1) Keywords associated with the document.
|
Creator | 4 |
(Optional) If the document was converted to PDF from another format, the name of the application (for example, Adobe FrameMaker®) that created the original document from which it was converted.
|
Producer | 5 |
(Optional) If the document was converted to PDF from another format, the name of the application (for example, Acrobat Distiller) that converted it to PDF.
|
CreationDate | 6 |
(Optional) The date and time the document was created, in human-readable form (see Section 3.8.3, “Dates”).
|
ModificationDate | 7 |
(Required if PieceInfo is present in the document catalog; otherwise optional; PDF 1.1) The date and time the document was most recently modified, in human-readable form (see Section 3.8.3, “Dates”).
|
Trapped | 8 |
(Optional; PDF 1.3) A name object indicating whether the document has
been modified to include trapping information (see Section 10.10.5, “Trapping Support”):
True The document has been fully trapped; no further trapping is
needed. (This is the name True, not the boolean value true.)
False The document has not yet been trapped; any desired
trapping must still be done. (This is the name False, not the
boolean value false.)
Unknown Either it is unknown whether the document has been
trapped or it has been partly but not yet fully trapped; some
additional trapping may still be needed.
Default value: Unknown.
The value of this entry may be set automatically by the software creating the
document’s trapping information, or it may be known only to a human operator
and entered manually.
|
See Also