File: Metafiles\RecordTypes\EMRRECTRECORD.cs
Web Access
Project: src\src\System.Windows.Forms.Primitives\tests\TestUtilities\System.Windows.Forms.Primitives.TestUtilities.csproj (System.Windows.Forms.Primitives.TestUtilities)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
#nullable enable
 
using System.Runtime.InteropServices;
 
namespace System.Windows.Forms.Metafiles;
 
/// <summary>
///  Record that just has a single <see cref="RECT"/> value.
/// </summary>
/// <devdoc>
///  Not an actual Win32 define, encapsulates:
///
///   - EMRFILLPATH
///   - EMRSTROKEANDFILLPATH
///   - EMRSTROKEPATH
///   - EMREXCLUDECLIPRECT
///   - EMRINTERSECTCLIPRECT
///   - EMRELLIPSE
///   - EMRRECTANGLE
/// </devdoc>
[StructLayout(LayoutKind.Sequential)]
internal struct EMRRECTRECORD
{
    public EMR emr;
    public RECT rect;
 
    public override readonly string ToString() => $"[EMR{emr.iType}] RECT: {rect}";
}