| 1234567891011121314151617181920212223242526272829303132 |
- //
- // System.Web.UI.HtmlTextWriterStyle.cs
- //
- // Author:
- // Bob Smith <[email protected]>
- //
- // (C) Bob Smith
- //
- using System;
- using System.Web;
- namespace System.Web.UI
- {
- public enum HtmlTextWriterStyle
- {
- BackgroundColor,
- BackgroundImage,
- BorderCollapse,
- BorderColor,
- BorderStyle,
- BorderWidth,
- Color,
- FontFamily,
- FontSize,
- FontStyle,
- FontWeight,
- Height,
- TextDecoration,
- Width
- }
- }
|