| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /* System.Web.UI
- * Authors
- * Leen Toelen ([email protected])
- */
- namespace System.Web.UI{
- public enum HtmlTextWriterAttribute {
- Accesskey,
- Align,
- Alt,
- Background,
- Bgcolor,
- Border,
- Bordercolor,
- Cellpadding,
- Cellspacing,
- Checked,
- Class,
- Cols,
- Colspan,
- Disabled,
- For,
- Height,
- Href,
- Id,
- Maxlength,
- Multiple,
- Name,
- Nowrap,
- Onchange,
- Onclick,
- ReadOnly,
- Rows,
- Rowspan,
- Rules,
- Selected,
- Size,
- Src,
- Style,
- Tabindex,
- Target,
- Title,
- Type,
- Valign,
- Value,
- Width,
- Wrap,
- }
-
- } // namespace System.Web.UI.HtmlControls
|