Enum 9987 Word Templates Save Format in 28
- App
- System Application
- Namespace
- System.Integration.Word
Versions171819202122232425262728latest
Source in 28
src/System Application/App/Word Templates/src/WordTemplatesSaveFormat.Enum.al49 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.Integration.Word;
/// <summary>
/// Specifies the available formats in which the user can generate documents from Word templates.
/// </summary>
enum 9987 "Word Templates Save Format"
{
Extensible = false;
/// <summary>
/// Saves the document in the Microsoft Word 97 - 2007 Document format.
/// </summary>
value(10; Doc)
{
}
/// <summary>
/// Saves the document as an Office Open XML WordprocessingML Document (macro-free).
/// </summary>
value(20; Docx)
{
}
/// <summary>
/// Saves the document as PDF (Adobe Portable Document) format.
/// </summary>
value(40; PDF)
{
}
/// <summary>
/// Saves the document in the HTML format.
/// </summary>
value(50; Html)
{
}
/// <summary>
/// Saves the document in the plain text format.
/// </summary>
value(70; Text)
{
}
}Values, 5
| Id | Name | Obsolete |
|---|---|---|
| 10 | Doc | - |
| 20 | Docx | - |
| 40 | - | |
| 50 | Html | - |
| 70 | Text | - |