PdfFileSpecification Class

Docotic.Pdf library help > BitMiracle.Docotic.Pdf > PdfFileSpecification Class
Class for a file specification.

Inheritance Hierarchy

System.Object
  BitMiracle.Docotic.Pdf.PdfFileSpecification

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public sealed class PdfFileSpecification
VB
Public NotInheritable Class PdfFileSpecification

The PdfFileSpecification type exposes the following members.

Properties

  NameDescription
Public propertyContents
Gets the embedded file associated with the file specification.
Public propertyDescription
Gets the description of the file specification.
Public propertySpecification
Gets the file specification string.

Methods

  NameDescription
Public methodEquals
Determines whether the specified Object is equal to this instance.
(Overrides Object.Equals(Object).)
Public methodGetHashCode
Returns a hash code for this instance.
(Overrides Object.GetHashCode().)
Public methodGetType (Inherited from Object.)
Public methodSetCustomName
Adds custom key-name pair to this file specification.
Public methodToString (Inherited from Object.)

Remarks

A PDF file can refer to the contents of another file by using a file specification.

The file designated by a file specification is normally external to the PDF file referring to it. But it's also possible to embed external file within the referring PDF file, allowing its contents to be stored or transmitted along with the PDF file. See PdfEmbeddedFile class.

See Also