Files
2026-04-10 22:50:51 +02:00

33 lines
1.2 KiB
C#

using System;
using System.ComponentModel;
using System.Drawing.Design;
using System.IO;
using Cpp2IlInjected;
namespace System.Drawing.Imaging
{
/// <summary>Defines a graphic metafile. A metafile contains records that describe a sequence of graphics operations that can be recorded (constructed) and played back (displayed). This class is not inheritable.</summary>
// Token: 0x02000044 RID: 68
[Token(Token = "0x2000044")]
[Editor]
[Editor("System.Drawing.Design.MetafileEditor, System.Drawing.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(UITypeEditor))]
[MonoTODO("Metafiles, both WMF and EMF formats, are only partially supported.")]
[Serializable]
public sealed class Metafile : Image
{
// Token: 0x06000162 RID: 354 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000162")]
[Address(RVA = "0x67D480", Offset = "0x67C280", VA = "0x18067D480")]
internal Metafile(IntPtr ptr)
{
}
// Token: 0x06000163 RID: 355 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000163")]
[Address(RVA = "0x68CF40", Offset = "0x68BD40", VA = "0x18068CF40")]
internal Metafile(IntPtr ptr, Stream stream)
{
}
}
}