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