| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- //
- // System.Drawing.Imaging.MetafileHeader.cs
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- // Author: Everaldo Canuto
- // eMail: [email protected]
- // Dennis Hayes ([email protected])
- //
- 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 (); }
- }
- }
- }
|