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