This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / System.Web / System.Web.UI / HtmlTextWriterTag.cs
1
2 //
3 // Permission is hereby granted, free of charge, to any person obtaining
4 // a copy of this software and associated documentation files (the
5 // "Software"), to deal in the Software without restriction, including
6 // without limitation the rights to use, copy, modify, merge, publish,
7 // distribute, sublicense, and/or sell copies of the Software, and to
8 // permit persons to whom the Software is furnished to do so, subject to
9 // the following conditions:
10 // 
11 // The above copyright notice and this permission notice shall be
12 // included in all copies or substantial portions of the Software.
13 // 
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 //
22 /*      System.Web.UI\r
23 *       Authors\r
24 *               Leen Toelen (toelen@hotmail.com)\r
25 */\r
26 \r
27 \r
28 namespace System.Web.UI{\r
29 \r
30 public enum HtmlTextWriterTag {\r
31 Unknown,\r
32 A,\r
33 Acronym,\r
34 Address,\r
35 Area,\r
36 B,\r
37 Base,\r
38 Basefont,\r
39 Bdo,\r
40 Bgsound,\r
41 Big,\r
42 Blockquote,\r
43 Body,\r
44 Br,\r
45 Button,\r
46 Caption,\r
47 Center,\r
48 Cite,\r
49 Code,\r
50 Col,\r
51 Colgroup,\r
52 Dd,\r
53 Del,\r
54 Dfn,\r
55 Dir,\r
56 Div,\r
57 Dl,\r
58 Dt,\r
59 Em,\r
60 Embed,\r
61 Fieldset,\r
62 Font,\r
63 Form,\r
64 Frame,\r
65 Frameset,\r
66 H1,\r
67 H2,\r
68 H3,\r
69 H4,\r
70 H5,\r
71 H6,\r
72 Head,\r
73 Hr,\r
74 Html,\r
75 I,\r
76 Iframe,\r
77 Img,\r
78 Input,\r
79 Ins,\r
80 Isindex,\r
81 Kbd,\r
82 Label,\r
83 Legend,\r
84 Li,\r
85 Link,\r
86 Map,\r
87 Marquee,\r
88 Menu,\r
89 Meta,\r
90 Nobr,\r
91 Noframes,\r
92 Noscript,\r
93 Object,\r
94 Ol,\r
95 Option,\r
96 P,\r
97 Param,\r
98 Pre,\r
99 Q,\r
100 Rt,\r
101 Ruby,\r
102 S,\r
103 Samp,\r
104 Script,\r
105 Select,\r
106 Small,\r
107 Span,\r
108 Strike,\r
109 Strong,\r
110 Style,\r
111 Sub,\r
112 Sup,\r
113 Table,\r
114 Tbody,\r
115 Td,\r
116 Textarea,\r
117 Tfoot,\r
118 Th,\r
119 Thead,\r
120 Title,\r
121 Tr,\r
122 Tt,\r
123 U,\r
124 Ul,\r
125 Var,\r
126 Wbr,\r
127 Xml\r
128\r
129   \r
130 \r
131 } // namespace System.Web.UI.HtmlControls\r
132 \r