PdfDocument.Info Property

Gets the interface for the document metadata.

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

Syntax

C#
public PdfInfo Info { get; }
VB
Public ReadOnly Property Info As PdfInfo
	Get

Property Value

Type: PdfInfo
The interface for the document metadata.

Remarks

This property provides access to the basic PDF document metadata properties defined by PDF standard.

Please use Metadata property to access larger set of metadata properties defined by XMP standard. You may also add custom metadata properties using Metadata property.

This interface defines the same properties as the XmpPdfSchema class.

You can synchronize values setup through this and Metadata properties using the SyncMetadata(Boolean) method.

See Also