System.Drawing.Imaging.MetafileHeader
Contains attributes of an associated Metafile. Not inheritable.
namespace System.Drawing.Imaging
{
public sealed class MetafileHeader
{
public MetafileType Type { get; }
public int MetafileSize { get; }
public int Version { get; }
public float DpiX { get; }
public float DpiY { get; }
public Rectangle Bounds { get; }
public MetaHeader WmfHeader { get; }
public int EmfPlusHeaderSize { get; }
public int LogicalDpiX { get; }
public int LogicalDpiY { get; }
public bool IsWmf();
public bool IsWmfPlaceable();
public bool IsEmf();
public bool IsEmfOrEmfPlus();
public bool IsEmfPlus();
public bool IsEmfPlusDual();
public bool IsEmfPlusOnly();
public bool IsDisplay();
}
}