Enum 1996 Spotlight Tour Type in 24

App
System Application
Namespace
System.Environment.Configuration

Values, 4

Versions171819202122232425262728latest

Source242526272829

Source in 24

src/System Application/App/Guided Experience/src/Tour/SpotlightTourType.Enum.al47 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.Environment.Configuration;

/// <summary>
/// Specifies the type of a spotlight tour.
/// </summary>
enum 1996 "Spotlight Tour Type"
{
    Access = Public;
    Extensible = false;

    /// <summary>
    /// Default value - none.
    /// </summary>
    value(0; None)
    {
        Caption = 'None';
    }

    /// <summary>
    /// Specifies that the tour spotlights the Open in Excel functionality on the page.
    /// </summary>
    value(1; "Open in Excel")
    {
        Caption = 'Open in Excel';
    }

    /// <summary>
    /// Specifies that the tour spotlights the Share to Teams functionality on the page.
    /// </summary>
    value(2; "Share to Teams")
    {
        Caption = 'Share to Teams';
    }

    /// <summary>
    /// Specifies that the tour spotlights the Copilot functionality on the page.
    /// </summary>
    value(3; Copilot)
    {
        Caption = 'Copilot';
    }
}

Values, 4

IdNameObsolete
0None-
1Open in Excel-
2Share to Teams-
3Copilot-