Aspose::Words::Saving::PdfCustomPropertiesExport enum
Contents
[
Hide
]PdfCustomPropertiesExport enum
Specifies the way CustomDocumentProperties are exported to PDF file.
enum class PdfCustomPropertiesExport
Values
Name | Value | Description |
---|---|---|
None | 0 | No custom properties are exported. |
Standard | 1 | Custom properties are exported as entries in /Info dictionary. Custom properties with the following names are not exported: “Title”, “Author”, “Subject”, “Keywords”, “Creator”, “Producer”, “CreationDate”, “ModDate”, “Trapped”. |
Metadata | 2 | Custom properties are Metadata. |
Examples
Shows how to export custom properties while converting a document to PDF.
auto doc = MakeObject<Document>();
doc->get_CustomDocumentProperties()->Add(u"Company", String(u"My value"));
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
auto options = MakeObject<PdfSaveOptions>();
// Set the "CustomPropertiesExport" property to "PdfCustomPropertiesExport.None" to discard
// custom document properties as we save the document to .PDF.
// Set the "CustomPropertiesExport" property to "PdfCustomPropertiesExport.Standard"
// to preserve custom properties within the output PDF document.
// Set the "CustomPropertiesExport" property to "PdfCustomPropertiesExport.Metadata"
// to preserve custom properties in an XMP packet.
options->set_CustomPropertiesExport(pdfCustomPropertiesExportMode);
doc->Save(ArtifactsDir + u"PdfSaveOptions.CustomPropertiesExport.pdf", options);
See Also
- Namespace Aspose::Words::Saving
- Library Aspose.Words for C++