Enum 1996 Spotlight Tour Type in 25
- App
- System Application
- Namespace
- System.Environment.Configuration
Versions171819202122232425262728latest
Source in 25
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
| Id | Name | Obsolete |
|---|---|---|
| 0 | None | - |
| 1 | Open in Excel | - |
| 2 | Share to Teams | - |
| 3 | Copilot | - |