Enum 1909 Media Type in 27
- App
- System Application
- Namespace
- System.Device
Versions171819202122232425262728latest
Source in 27
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
| Id | Name | Obsolete |
|---|---|---|
| 0 | All Media | - |
| 1 | Picture | - |
| 2 | Video | - |