コード例 #1
0
ファイル: TagAbbrExtension.cs プロジェクト: bzure/BSA.Net
 public static TagAbbr onmouseout(this TagAbbr tag, string value)
 {
     tag.OnMouseOut = value; return(tag);
 }
コード例 #2
0
ファイル: TagAbbrExtension.cs プロジェクト: bzure/BSA.Net
 public static TagAbbr onmouseup(this TagAbbr tag, string value)
 {
     tag.OnMouseUp = value; return(tag);
 }
コード例 #3
0
ファイル: TagAbbrExtension.cs プロジェクト: bzure/BSA.Net
 public static TagAbbr onmousemove(this TagAbbr tag, string value)
 {
     tag.OnMouseMove = value; return(tag);
 }
コード例 #4
0
ファイル: TagAbbrExtension.cs プロジェクト: bzure/BSA.Net
 public static TagAbbr ondblclick(this TagAbbr tag, string value)
 {
     tag.OnDblClick = value; return(tag);
 }
コード例 #5
0
ファイル: TagAbbrExtension.cs プロジェクト: bzure/BSA.Net
 public static TagAbbr onmousedown(this TagAbbr tag, string value)
 {
     tag.OnMouseDown = value; return(tag);
 }
コード例 #6
0
ファイル: TagAbbrExtension.cs プロジェクト: bzure/BSA.Net
 public static TagAbbr xmllang(this TagAbbr tag, string value)
 {
     tag.XmlLang = value; return(tag);
 }
コード例 #7
0
ファイル: TagAbbrExtension.cs プロジェクト: bzure/BSA.Net
 public static TagAbbr dir(this TagAbbr tag, Dir value)
 {
     tag.Dir = value; return(tag);
 }
コード例 #8
0
ファイル: TagAbbrExtension.cs プロジェクト: bzure/BSA.Net
 public static TagAbbr title(this TagAbbr tag, string value)
 {
     tag.Title = value; return(tag);
 }
コード例 #9
0
ファイル: TagAbbrExtension.cs プロジェクト: bzure/BSA.Net
 public static TagAbbr lang(this TagAbbr tag, LangCode value)
 {
     tag.Lang = value; return(tag);
 }
コード例 #10
0
ファイル: TagAbbrExtension.cs プロジェクト: bzure/BSA.Net
 public static TagAbbr @class(this TagAbbr tag, string value)
 {
     tag.Class = value; return(tag);
 }
コード例 #11
0
ファイル: TagAbbrExtension.cs プロジェクト: bzure/BSA.Net
 public static TagAbbr id(this TagAbbr tag, string value)
 {
     tag.Id = value; return(tag);
 }
コード例 #12
0
ファイル: TagAbbrExtension.cs プロジェクト: bzure/BSA.Net
 public static TagAbbr onkeyup(this TagAbbr tag, string value)
 {
     tag.OnKeyUp = value; return(tag);
 }
コード例 #13
0
ファイル: TagAbbrExtension.cs プロジェクト: bzure/BSA.Net
 public static TagAbbr onkeydown(this TagAbbr tag, string value)
 {
     tag.OnKeyDown = value; return(tag);
 }
コード例 #14
0
ファイル: TagAbbrExtension.cs プロジェクト: bzure/BSA.Net
 public static TagAbbr onkeypress(this TagAbbr tag, string value)
 {
     tag.OnKeyPress = value; return(tag);
 }