Enum 3972 Rotate Flip Type in 25

App
System Application
Namespace
System.Utilities

Values, 8

Versions171819202122232425262728latest

Source242526272829

Source in 25

src/System Application/App/Image/src/RotateFlipType.Enum.al55 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.Utilities;

/// <summary>
/// Specifies how much an image is rotated and the axis used to flip the image.
/// </summary>
enum 3972 "Rotate Flip Type"
{
    Access = Public;
    Extensible = false;

    /// <summary>
    /// Specifies no clockwise rotation and no flipping.
    /// </summary>
    value(0; RotateNoneFlipNone) { Caption = 'RotateNoneFlipNone', Locked = true; }

    /// <summary>
    /// Specifies a 90-degree clockwise rotation without flipping.
    /// </summary>
    value(1; Rotate90FlipNone) { Caption = 'Rotate90FlipNone', Locked = true; }

    /// <summary>
    /// Specifies a 180-degree clockwise rotation without flipping.
    /// </summary>
    value(2; Rotate180FlipNone) { Caption = 'Rotate180FlipNone', Locked = true; }

    /// <summary>
    /// Specifies a 270-degree clockwise rotation without flipping.
    /// </summary>
    value(3; Rotate270FlipNone) { Caption = 'Rotate270FlipNone', Locked = true; }

    /// <summary>
    /// Specifies no clockwise rotation followed by a horizontal flip.
    /// </summary>
    value(4; RotateNoneFlipX) { Caption = 'RotateNoneFlipX', Locked = true; }

    /// <summary>
    /// Specifies a 90-degree clockwise rotation followed by a horizontal flip.
    /// </summary>
    value(5; Rotate90FlipX) { Caption = 'Rotate90FlipX', Locked = true; }

    /// <summary>
    /// Specifies a 180-degree clockwise rotation followed by a horizontal flip.
    /// </summary>
    value(6; Rotate180FlipX) { Caption = 'Rotate180FlipX', Locked = true; }

    /// <summary>
    /// Specifies a 270-degree clockwise rotation followed by a horizontal flip.
    /// </summary>
    value(7; Rotate270FlipX) { Caption = 'Rotate270FlipX', Locked = true; }
}

Values, 8

IdNameObsolete
0RotateNoneFlipNone-
1Rotate90FlipNone-
2Rotate180FlipNone-
3Rotate270FlipNone-
4RotateNoneFlipX-
5Rotate90FlipX-
6Rotate180FlipX-
7Rotate270FlipX-