ensure the tests files are in sync; see run-mono-tests.bat diff
[mono.git] / mcs / class / System.Web / System.Web.UI / HtmlTextWriterStyle.cs
index fd1186d61a0f81c3b0c4d6b05f0a83dddef899c5..5dd11945d664f2f97a93f5e9d7e93e10d94e3880 100644 (file)
@@ -1,4 +1,10 @@
-
+// 
+// System.Web.UI.HtmlTextWriterStyle
+//
+// Author:
+//        Ben Maurer <bmaurer@novell.com>
+//
+// (c) 2005 Novell
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-/*     System.Web.UI\r
-*      Authors\r
-*              Leen Toelen (toelen@hotmail.com)\r
-*/\r
-\r
-\r
-namespace System.Web.UI{\r
-\r
-public enum HtmlTextWriterStyle {\r
-BackgroundColor,\r
-BackgroundImage,\r
-BorderCollapse,\r
-BorderColor,\r
-BorderStyle,\r
-BorderWidth,\r
-Color,\r
-FontFamily,\r
-FontSize,\r
-FontStyle,\r
-FontWeight,\r
-Height,\r
-TextDecoration,\r
-Width\r
-} \r
-\r
-\r
-} // namespace System.Web.UI.HtmlControls\r
-\r
+
+namespace System.Web.UI {
+#if !NET_2_0
+       [Serializable]
+#endif
+       public enum HtmlTextWriterStyle {
+               BackgroundColor,
+               BackgroundImage,
+               BorderCollapse,
+               BorderColor,
+               BorderStyle,
+               BorderWidth,
+               Color,
+               FontFamily,
+               FontSize,
+               FontStyle,
+               FontWeight,
+               Height,
+               TextDecoration,
+               Width,
+#if NET_2_0
+               ListStyleImage,
+               ListStyleType,
+               Cursor,
+               Direction,
+               Display,
+               Filter,
+               FontVariant,
+               Left,
+               Margin,
+               MarginBottom,
+               MarginLeft,
+               MarginRight,
+               MarginTop,
+               Overflow,
+               OverflowX,
+               OverflowY,
+               Padding,
+               PaddingBottom,
+               PaddingLeft,
+               PaddingRight,
+               PaddingTop,
+               Position,
+               TextAlign,
+               VerticalAlign,
+               TextOverflow,
+               Top,
+               Visibility,
+               WhiteSpace,
+               ZIndex
+#endif
+       }
+
+}