Пример #1
0
 public static TagTextArea @readonly(this TagTextArea tag, ReadOnly value)
 {
     tag.ReadOnly = value; return(tag);
 }
Пример #2
0
 public static TagTextArea cols(this TagTextArea tag, int value)
 {
     tag.Cols = value; return(tag);
 }
Пример #3
0
 public static TagTextArea disabled(this TagTextArea tag, Disabled value)
 {
     tag.Disabled = value; return(tag);
 }
Пример #4
0
 public static TagTextArea xmllang(this TagTextArea tag, string value)
 {
     tag.XmlLang = value; return(tag);
 }
Пример #5
0
 public static TagTextArea onmousedown(this TagTextArea tag, string value)
 {
     tag.OnMouseDown = value; return(tag);
 }
Пример #6
0
 public static TagTextArea id(this TagTextArea tag, string value)
 {
     tag.Id = value; return(tag);
 }
Пример #7
0
 public static TagTextArea title(this TagTextArea tag, string value)
 {
     tag.Title = value; return(tag);
 }
Пример #8
0
 public static TagTextArea accesskey(this TagTextArea tag, char value)
 {
     tag.AccessKey = value; return(tag);
 }
Пример #9
0
 public static TagTextArea tabindex(this TagTextArea tag, int value)
 {
     tag.TabIndex = value; return(tag);
 }
Пример #10
0
 public static TagTextArea onkeydown(this TagTextArea tag, string value)
 {
     tag.OnKeyDown = value; return(tag);
 }
Пример #11
0
 public static TagTextArea onkeyup(this TagTextArea tag, string value)
 {
     tag.OnKeyUp = value; return(tag);
 }
Пример #12
0
 public static TagTextArea onkeypress(this TagTextArea tag, string value)
 {
     tag.OnKeyPress = value; return(tag);
 }
Пример #13
0
 public static TagTextArea onmouseout(this TagTextArea tag, string value)
 {
     tag.OnMouseOut = value; return(tag);
 }
Пример #14
0
 public static TagTextArea onmousemove(this TagTextArea tag, string value)
 {
     tag.OnMouseMove = value; return(tag);
 }
Пример #15
0
 public static TagTextArea onselect(this TagTextArea tag, string value)
 {
     tag.OnSelect = value; return(tag);
 }
Пример #16
0
 public static TagTextArea onfocus(this TagTextArea tag, string value)
 {
     tag.OnFocus = value; return(tag);
 }
Пример #17
0
 public static TagTextArea onchange(this TagTextArea tag, string value)
 {
     tag.OnChange = value; return(tag);
 }
Пример #18
0
 public static TagTextArea onblur(this TagTextArea tag, string value)
 {
     tag.OnBlur = value; return(tag);
 }
Пример #19
0
 public static TagTextArea @class(this TagTextArea tag, string value)
 {
     tag.Class = value; return(tag);
 }
Пример #20
0
 public static TagTextArea name(this TagTextArea tag, string value)
 {
     tag.Name = value; return(tag);
 }
Пример #21
0
 public static TagTextArea lang(this TagTextArea tag, LangCode value)
 {
     tag.Lang = value; return(tag);
 }
Пример #22
0
 public static TagTextArea rows(this TagTextArea tag, int value)
 {
     tag.Rows = value; return(tag);
 }
Пример #23
0
 public static TagTextArea dir(this TagTextArea tag, Dir value)
 {
     tag.Dir = value; return(tag);
 }
Пример #24
0
 public static TagTextArea ondblclick(this TagTextArea tag, string value)
 {
     tag.OnDblClick = value; return(tag);
 }