HtmlTextWriterStyle.cs 631 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // System.Web.UI.HtmlTextWriterStyle.cs
  3. //
  4. // Author:
  5. // Bob Smith <[email protected]>
  6. //
  7. // (C) Bob Smith
  8. //
  9. using System;
  10. using System.Web;
  11. namespace System.Web.UI
  12. {
  13. public enum HtmlTextWriterStyle
  14. {
  15. BackgroundColor,
  16. BackgroundImage,
  17. BorderCollapse,
  18. BorderColor,
  19. BorderStyle,
  20. BorderWidth,
  21. Color,
  22. FontFamily,
  23. FontSize,
  24. FontStyle,
  25. FontWeight,
  26. Height,
  27. TextDecoration,
  28. Width
  29. }
  30. }