// // System.Drawing.Imaging.MetafileHeader.cs // // (C) 2002 Ximian, Inc. http://www.ximian.com // Author: Everaldo Canuto // eMail: everaldo.canuto@bol.com.br // Dennis Hayes (dennish@raytek.com) // using System; namespace System.Drawing.Imaging { public sealed class MetafileHeader { // methods [MonoTODO] public bool IsDisplay() { throw new NotImplementedException (); } [MonoTODO] public bool IsEmf() { throw new NotImplementedException (); } [MonoTODO] public bool IsEmfOrEmfPlus() { throw new NotImplementedException (); } [MonoTODO] public bool IsEmfPlus() { throw new NotImplementedException (); } [MonoTODO] public bool IsEmfPlusDual() { throw new NotImplementedException (); } [MonoTODO] public bool IsEmfPlusOnly() { throw new NotImplementedException (); } [MonoTODO] public bool IsWmf() { throw new NotImplementedException (); } [MonoTODO] public bool IsWmfPlaceable() { throw new NotImplementedException (); } // properties [MonoTODO] public Rectangle Bounds { get { throw new NotImplementedException (); } } [MonoTODO] public float DpiX { get { throw new NotImplementedException (); } } [MonoTODO] public float DpiY { get { throw new NotImplementedException (); } } [MonoTODO] public int EmfPlusHeaderSize { get { throw new NotImplementedException (); } } [MonoTODO] public int LogicalDpiX { get { throw new NotImplementedException (); } } [MonoTODO] public int LogicalDpiY { get { throw new NotImplementedException (); } } [MonoTODO] public int MetafileSize { get { throw new NotImplementedException (); } } [MonoTODO] public MetafileType Type { get { throw new NotImplementedException (); } } [MonoTODO] public int Version { get { throw new NotImplementedException (); } } [MonoTODO] public MetaHeader WmfHeader { get { throw new NotImplementedException (); } } } }