Enum 2716 Summary Type
- App
- System Application
- Namespace
- System.Integration
- Versions
- 17-28
Versions171819202122232425262728
Source in 29
src/System Application/App/Page Summary Provider/src/SummaryType.Enum.al29 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;
/// <summary>
/// Specifies the type of a summary.
/// </summary>
enum 2716 "Summary Type"
{
Extensible = false;
/// <summary>
/// Specifies the default type that represents caption of a object
/// </summary>
value(0; Caption)
{
Caption = 'Caption';
}
/// <summary>
/// Specifies the type that represents fields defined in a brick fieldgroup
/// </summary>
value(1; Brick)
{
Caption = 'Brick';
}
}