* ItfImage.cs: Reformatted and removed sections that were
[mono.git] / mcs / class / System.Drawing / System.Drawing.Imaging / MetafileHeader.cs
1 //\r
2 // System.Drawing.Imaging.MetafileHeader.cs\r
3 //\r
4 // (C) 2002 Ximian, Inc.  http://www.ximian.com\r
5 // Author: Everaldo Canuto\r
6 // eMail: everaldo.canuto@bol.com.br\r
7 // Dennis Hayes (dennish@raytek.com)\r
8 //\r
9 using System;\r
10 \r
11 namespace System.Drawing.Imaging {\r
12 \r
13         public sealed class MetafileHeader {\r
14 \r
15                 // methods\r
16                 [MonoTODO]\r
17                 public bool IsDisplay() {\r
18                         throw new NotImplementedException ();\r
19                 }\r
20 \r
21                 [MonoTODO]\r
22                 public bool IsEmf() {\r
23                         throw new NotImplementedException ();\r
24                 }\r
25 \r
26                 [MonoTODO]\r
27                 public bool IsEmfOrEmfPlus() {\r
28                         throw new NotImplementedException ();\r
29                 }\r
30 \r
31                 [MonoTODO]\r
32                 public bool IsEmfPlus() {\r
33                         throw new NotImplementedException ();\r
34                 }\r
35 \r
36                 [MonoTODO]\r
37                 public bool IsEmfPlusDual() {\r
38                         throw new NotImplementedException ();\r
39                 }\r
40 \r
41                 [MonoTODO]\r
42                 public bool IsEmfPlusOnly() {\r
43                         throw new NotImplementedException ();\r
44                 }\r
45 \r
46                 [MonoTODO]\r
47                 public bool IsWmf() {\r
48                         throw new NotImplementedException ();\r
49                 }\r
50 \r
51                 [MonoTODO]\r
52                 public bool IsWmfPlaceable() {\r
53                         throw new NotImplementedException ();\r
54                 }\r
55 \r
56                 // properties\r
57                 [MonoTODO]\r
58                 public Rectangle Bounds {\r
59                         get { throw new NotImplementedException (); }\r
60                 }\r
61 \r
62                 [MonoTODO]\r
63                 public float DpiX {\r
64                         get { throw new NotImplementedException (); }\r
65                 }\r
66                 \r
67                 [MonoTODO]\r
68                 public float DpiY {\r
69                         get { throw new NotImplementedException (); }\r
70                 }\r
71                 \r
72                 [MonoTODO]\r
73                 public int EmfPlusHeaderSize {\r
74                         get { throw new NotImplementedException (); }\r
75                 }\r
76 \r
77                 [MonoTODO]\r
78                 public int LogicalDpiX {\r
79                         get { throw new NotImplementedException (); }\r
80                 }\r
81                 \r
82                 [MonoTODO]\r
83                 public int LogicalDpiY {\r
84                         get { throw new NotImplementedException (); }\r
85                 }\r
86                 \r
87                 [MonoTODO]\r
88                 public int MetafileSize {\r
89                         get { throw new NotImplementedException (); }\r
90                 }\r
91 \r
92                 [MonoTODO]\r
93                 public MetafileType Type {\r
94                         get { throw new NotImplementedException (); }\r
95                 }\r
96 \r
97                 [MonoTODO]\r
98                 public int Version {\r
99                         get { throw new NotImplementedException (); }\r
100                 }\r
101                 \r
102                 [MonoTODO]\r
103                 public MetaHeader WmfHeader {\r
104                         get { throw new NotImplementedException (); }\r
105                 }\r
106 \r
107         }\r
108 \r
109 }\r