Enum 2716 Summary Type in 24

App
System Application
Namespace
System.Integration

Values, 2

Versions171819202122232425262728latest

Source242526272829

Source in 24

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';
    }
}

Values, 2

IdNameObsolete
0Caption-
1Brick-