コード例 #1
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol title(this TagCol tag, string value)
 {
     tag.Title = value; return(tag);
 }
コード例 #2
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol lang(this TagCol tag, LangCode value)
 {
     tag.Lang = value; return(tag);
 }
コード例 #3
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol @class(this TagCol tag, string value)
 {
     tag.Class = value; return(tag);
 }
コード例 #4
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol style(this TagCol tag, string value)
 {
     tag.Style = value; return(tag);
 }
コード例 #5
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol onmouseup(this TagCol tag, string value)
 {
     tag.OnMouseUp = value; return(tag);
 }
コード例 #6
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol onkeypress(this TagCol tag, string value)
 {
     tag.OnKeyPress = value; return(tag);
 }
コード例 #7
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol valign(this TagCol tag, Valign value)
 {
     tag.Valign = value; return(tag);
 }
コード例 #8
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol ondblclick(this TagCol tag, string value)
 {
     tag.OnDblClick = value; return(tag);
 }
コード例 #9
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol @char(this TagCol tag, char value)
 {
     tag.Char = value; return(tag);
 }
コード例 #10
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol charoff(this TagCol tag, Length value)
 {
     tag.CharOff = value; return(tag);
 }
コード例 #11
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol align(this TagCol tag, Align value)
 {
     tag.Align = value; return(tag);
 }
コード例 #12
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol onkeyup(this TagCol tag, string value)
 {
     tag.OnKeyUp = value; return(tag);
 }
コード例 #13
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol onkeydown(this TagCol tag, string value)
 {
     tag.OnKeyDown = value; return(tag);
 }
コード例 #14
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol xmllang(this TagCol tag, string value)
 {
     tag.XmlLang = value; return(tag);
 }
コード例 #15
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol span(this TagCol tag, int value)
 {
     tag.Span = value; return(tag);
 }
コード例 #16
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol dir(this TagCol tag, Dir value)
 {
     tag.Dir = value; return(tag);
 }
コード例 #17
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol width(this TagCol tag, MultiLength value)
 {
     tag.Width = value; return(tag);
 }
コード例 #18
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol onmousedown(this TagCol tag, string value)
 {
     tag.OnMouseDown = value; return(tag);
 }
コード例 #19
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol id(this TagCol tag, string value)
 {
     tag.Id = value; return(tag);
 }
コード例 #20
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol onmouseover(this TagCol tag, string value)
 {
     tag.OnMouseOver = value; return(tag);
 }
コード例 #21
0
ファイル: TagColExtension.cs プロジェクト: bzure/BSA.Net
 public static TagCol onmousemove(this TagCol tag, string value)
 {
     tag.OnMouseMove = value; return(tag);
 }