2005-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / HtmlTextWriterStyle.cs
1 //
2 // System.Web.UI.HtmlTextWriterStyle.cs
3 //
4 // Authors:
5 //      Leen Toelen (toelen@hotmail.com)
6 //      Sanjay Gupta (gsanjay@novell.com)
7 //
8 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
9 //
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 namespace System.Web.UI{
32         public enum HtmlTextWriterStyle {
33                 BackgroundColor,
34                 BackgroundImage,
35                 BorderCollapse,
36                 BorderColor,
37                 BorderStyle,
38                 BorderWidth,
39                 Color,
40                 FontFamily,
41                 FontSize,
42                 FontStyle,
43                 FontWeight,
44                 Height,
45                 TextDecoration,
46                 Width,
47 #if NET_2_0
48                 ListStyleImage = 14,
49                 ListStyleType = 15,
50                 Cursor = 16,
51                 Direction = 17,
52                 Display = 18,
53                 Filter = 19,
54                 FontVariant = 20,
55                 Left = 21,
56                 Margin = 22,
57                 MarginBottom = 23,
58                 MarginLeft = 24,
59                 MarginRight = 25,
60                 MarginTop = 26,
61                 Overflow = 27,
62                 OverflowX = 28,
63                 OverflowY = 29,
64                 Padding = 30,
65                 PaddingBottom = 31,
66                 PaddingLeft = 32,
67                 PaddingRight = 33,
68                 PaddingTop = 34,
69                 Position = 35,
70                 TextAlign = 36,
71                 TextOverflow = 37,
72                 Top = 38,
73                 Visibility = 39,
74                 WhiteSpace = 40,
75                 ZIndex = 41
76 #endif
77         }
78 }
79