HtmlTextWriterAttribute.cs 563 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* System.Web.UI
  2. * Authors
  3. * Leen Toelen ([email protected])
  4. */
  5. namespace System.Web.UI{
  6. public enum HtmlTextWriterAttribute {
  7. Accesskey,
  8. Align,
  9. Alt,
  10. Background,
  11. Bgcolor,
  12. Border,
  13. Bordercolor,
  14. Cellpadding,
  15. Cellspacing,
  16. Checked,
  17. Class,
  18. Cols,
  19. Colspan,
  20. Disabled,
  21. For,
  22. Height,
  23. Href,
  24. Id,
  25. Maxlength,
  26. Multiple,
  27. Name,
  28. Nowrap,
  29. Onchange,
  30. Onclick,
  31. ReadOnly,
  32. Rows,
  33. Rowspan,
  34. Rules,
  35. Selected,
  36. Size,
  37. Src,
  38. Style,
  39. Tabindex,
  40. Target,
  41. Title,
  42. Type,
  43. Valign,
  44. Value,
  45. Width,
  46. Wrap,
  47. }
  48. } // namespace System.Web.UI.HtmlControls