HtmlTextWriterAttribute.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // System.Web.UI.HtmlTextWriterAttribute.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 HtmlTextWriterAttribute
  14. {
  15. Accesskey,
  16. Align,
  17. Alt,
  18. Background,
  19. Bgcolor,
  20. Border,
  21. Bordercolor,
  22. Cellpadding,
  23. Cellspacing,
  24. Checked,
  25. Class,
  26. Cols,
  27. Colspan,
  28. Disabled,
  29. For,
  30. Height,
  31. Href,
  32. Id,
  33. Maxlength,
  34. Multiple,
  35. Name,
  36. Nowrap,
  37. Onchange,
  38. Onclick,
  39. ReadOnly,
  40. Rows,
  41. Rowspan,
  42. Rules,
  43. Selected,
  44. Size,
  45. Src,
  46. Style,
  47. Tabindex,
  48. Target,
  49. Title,
  50. Type,
  51. Valign,
  52. Value,
  53. Width,
  54. Wrap
  55. }
  56. }