1 //------------------------------------------------------------------------------
2 // <copyright file="HtmlTextWriterStyle.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6 
7 
8 
9 namespace System.Web.UI {
10     using System;
11 
12 
13     /// <devdoc>
14     /// </devdoc>
15     public enum HtmlTextWriterStyle {
16 
17         BackgroundColor,
18 
19         BackgroundImage,
20 
21         BorderCollapse,
22 
23         BorderColor,
24 
25         BorderStyle,
26 
27         BorderWidth,
28 
29         Color,
30 
31         FontFamily,
32 
33         FontSize,
34 
35         FontStyle,
36 
37         FontWeight,
38 
39         Height,
40 
41         TextDecoration,
42 
43         Width,
44 
45         ListStyleImage,
46 
47         ListStyleType,
48 
49 
50         Cursor,
51 
52         Direction,
53 
54         Display,
55 
56         Filter,
57 
58         FontVariant,
59 
60         Left,
61 
62         Margin,
63 
64         MarginBottom,
65 
66         MarginLeft,
67 
68         MarginRight,
69 
70         MarginTop,
71 
72         Overflow,
73 
74         OverflowX,
75 
76         OverflowY,
77 
78         Padding,
79 
80         PaddingBottom,
81 
82         PaddingLeft,
83 
84         PaddingRight,
85 
86         PaddingTop,
87 
88         Position,
89 
90         TextAlign,
91 
92         VerticalAlign,
93 
94         TextOverflow,
95 
96         Top,
97 
98         Visibility,
99 
100         WhiteSpace,
101 
102         ZIndex
103     }
104 }
105