HtmlTextWriterStyle.cs 375 B

12345678910111213141516171819202122232425262728
  1. /* System.Web.UI
  2. * Authors
  3. * Leen Toelen ([email protected])
  4. */
  5. namespace System.Web.UI{
  6. public enum HtmlTextWriterStyle {
  7. BackgroundColor,
  8. BackgroundImage,
  9. BorderCollapse,
  10. BorderColor,
  11. BorderStyle,
  12. BorderWidth,
  13. Color,
  14. FontFamily,
  15. FontSize,
  16. FontStyle,
  17. FontWeight,
  18. Height,
  19. TextDecoration,
  20. Width
  21. }
  22. } // namespace System.Web.UI.HtmlControls