Enum 3109 PDF Save Format
- App
- System Application
- Namespace
- System.IO
- Versions
- 26-28
Versions171819202122232425262728
Source in 29
src/System Application/App/Pdf/src/PDFSaveFormat.Enum.al38 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.IO;
/// <summary>
/// Enum for the PDf formats that can be used.
/// </summary>
enum 3109 "PDF Save Format"
{
Extensible = false;
/// <summary>
/// Save the PDF in the default format (traditionally PDF version 1.7). Platform will decide the PDF version.
/// </summary>
value(0; Default)
{
Caption = 'Default';
}
/// <summary>
/// Save the PDF in the PDF/A-3B format. This will not update the embedded XMP metadata.
/// </summary>
value(1; PdfA3B)
{
Caption = 'PDF/A-3B';
}
/// <summary>
/// Save the PDF in the PDF/A-3B format and add the embedded XMP metadata required by E-Invoice standards like ZUGFeRD/Facturec.
/// </summary>
value(2; Einvoice)
{
Caption = 'E-Invoice';
}
}