Enum 1490 Edit in Excel Edm Type in 28

App
System Application
Namespace
System.Integration.Excel

Values, 6

Versions171819202122232425262728latest

Source242526272829

Source in 28

src/System Application/App/Edit in Excel/src/Filters/EditInExcelEdmType.Enum.al35 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.Excel;

/// <summary>
/// This enum specifies the OData Edm type of the fields added to excel.
/// These should generally reflect those in the $metadata document.
/// </summary>
enum 1490 "Edit in Excel Edm Type"
{
    Access = Public;
    Extensible = false;

    value(0; "Edm.String")
    {
    }
    value(1; "Edm.Int32")
    {
    }
    value(2; "Edm.Int64")
    {
    }
    value(3; "Edm.Decimal")
    {
    }
    value(4; "Edm.DateTimeOffset")
    {
    }
    value(5; "Edm.Boolean")
    {
    }
}

Values, 6

IdNameObsolete
0Edm.String-
1Edm.Int32-
2Edm.Int64-
3Edm.Decimal-
4Edm.DateTimeOffset-
5Edm.Boolean-