コード例 #1
0
 public static TagDl onmousemove(this TagDl tag, string value)
 {
     tag.OnMouseMove = value; return(tag);
 }
コード例 #2
0
 public static TagDl onmouseout(this TagDl tag, string value)
 {
     tag.OnMouseOut = value; return(tag);
 }
コード例 #3
0
 public static TagDl onmousedown(this TagDl tag, string value)
 {
     tag.OnMouseDown = value; return(tag);
 }
コード例 #4
0
 public static TagDl onmouseup(this TagDl tag, string value)
 {
     tag.OnMouseUp = value; return(tag);
 }
コード例 #5
0
 public static TagDl dir(this TagDl tag, Dir value)
 {
     tag.Dir = value; return(tag);
 }
コード例 #6
0
 public static TagDl ondblclick(this TagDl tag, string value)
 {
     tag.OnDblClick = value; return(tag);
 }
コード例 #7
0
 public static TagDl lang(this TagDl tag, LangCode value)
 {
     tag.Lang = value; return(tag);
 }
コード例 #8
0
 public static TagDl xmllang(this TagDl tag, string value)
 {
     tag.XmlLang = value; return(tag);
 }
コード例 #9
0
 public static TagDl style(this TagDl tag, string value)
 {
     tag.Style = value; return(tag);
 }
コード例 #10
0
 public static TagDl title(this TagDl tag, string value)
 {
     tag.Title = value; return(tag);
 }
コード例 #11
0
 public static TagDl @class(this TagDl tag, string value)
 {
     tag.Class = value; return(tag);
 }
コード例 #12
0
 public static TagDl id(this TagDl tag, string value)
 {
     tag.Id = value; return(tag);
 }
コード例 #13
0
 public static TagDl onkeyup(this TagDl tag, string value)
 {
     tag.OnKeyUp = value; return(tag);
 }
コード例 #14
0
 public static TagDl onkeydown(this TagDl tag, string value)
 {
     tag.OnKeyDown = value; return(tag);
 }
コード例 #15
0
 public static TagDl onkeypress(this TagDl tag, string value)
 {
     tag.OnKeyPress = value; return(tag);
 }