// // System.Drawing.Imaging.WmfPlaceableFileHeader.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 WmfPlaceableFileHeader { // constructors [MonoTODO] public WmfPlaceableFileHeader() { throw new NotImplementedException (); } // properties [MonoTODO] public short BboxBottom { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public short BboxLeft { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public short BboxRight { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public short BboxTop { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public short Checksum { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public short Hmf { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public short Inch { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public int Key { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public int Reserved { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public int Id { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } } }