File: System\Drawing\Imaging\EmfPlusFlags.cs
Web Access
Project: src\src\System.Drawing.Common\src\System.Drawing.Common.csproj (System.Drawing.Common)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Drawing.Imaging;
 
/// <summary>
///  EMF+ Flags
/// </summary>
internal enum EmfPlusFlags
{
    Display = 0x00000001,
    NonDualGdi = 0x00000002
}