Enum 3710 Video Category in 26

App
System Application
Namespace
System.Media

Values, 1

Versions171819202122232425262728latest

Source242526272829

Source in 26

src/System Application/App/Video/src/VideoCategory.Enum.al21 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.Media;

/// <summary>This enum is the category under which videos can be classified.</summary>
/// <remarks>Extensions can extend this enum to add custom categories.</remarks>
enum 3710 "Video Category"
{
    Extensible = true;

    /// <summary>
    /// A default category, specifying that the video is not categorized.
    /// </summary>
    value(0; Uncategorized)
    {
        Caption = 'Uncategorized';
    }
}

Values, 1

IdNameObsolete
0Uncategorized-