Enum 1490 Edit in Excel Edm Type, source in 27
Source242526272829metadata in 27
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")
{
}
}