PdfDocument.Metadata Property

Gets the XMP metadata attached to the document.

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

Syntax

C#
public XmpMetadata Metadata { get; }
VB
Public ReadOnly Property Metadata As XmpMetadata
	Get

Property Value

Type: XmpMetadata
The XMP metadata attached to the document.

Remarks

This property provides access to metadata properties defined by XMP standard.

Please use Info property to access basic PDF document properties defined by PDF standard.

Please note that setting any of the XMP metadata properties will cause document to be saved using at least version 1.4 of the PDF standard.

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

See Also