Enum 1909 Media Type in 28

App
System Application
Namespace
System.Device

Values, 3

Versions171819202122232425262728latest

Source242526272829

Source in 28

src/System Application/App/Camera and Media Interaction/src/MediaType.Enum.al38 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.Device;

/// <summary>
/// Specifies media type for the Media Interaction page.
/// </summary>
enum 1909 "Media Type"
{
    Extensible = false;

    /// <summary>
    /// Choose from either pictures or videos.
    /// </summary>
    value(0; "All Media")
    {
        Caption = 'All Media';
    }

    /// <summary>
    /// Choose from pictures.
    /// </summary>
    value(1; Picture)
    {
        Caption = 'Picture';
    }

    /// <summary>
    /// Choose from videos.
    /// </summary>
    value(2; Video)
    {
        Caption = 'Video';
    }
}

Values, 3

IdNameObsolete
0All Media-
1Picture-
2Video-