示例#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);
 }