コード例 #1
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd headers(this TagTd tag, string value)
 {
     tag.Headers = value; return(tag);
 }
コード例 #2
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd scope(this TagTd tag, Scope value)
 {
     tag.Scope = value; return(tag);
 }
コード例 #3
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd dir(this TagTd tag, Dir value)
 {
     tag.Dir = value; return(tag);
 }
コード例 #4
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd onmouseup(this TagTd tag, string value)
 {
     tag.OnMouseUp = value; return(tag);
 }
コード例 #5
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd style(this TagTd tag, string value)
 {
     tag.Style = value; return(tag);
 }
コード例 #6
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd lang(this TagTd tag, LangCode value)
 {
     tag.Lang = value; return(tag);
 }
コード例 #7
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd align(this TagTd tag, Align value)
 {
     tag.Align = value; return(tag);
 }
コード例 #8
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd id(this TagTd tag, string value)
 {
     tag.Id = value; return(tag);
 }
コード例 #9
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd onkeydown(this TagTd tag, string value)
 {
     tag.OnKeyDown = value; return(tag);
 }
コード例 #10
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd onkeyup(this TagTd tag, string value)
 {
     tag.OnKeyUp = value; return(tag);
 }
コード例 #11
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd onkeypress(this TagTd tag, string value)
 {
     tag.OnKeyPress = value; return(tag);
 }
コード例 #12
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd onmouseout(this TagTd tag, string value)
 {
     tag.OnMouseOut = value; return(tag);
 }
コード例 #13
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd onmousemove(this TagTd tag, string value)
 {
     tag.OnMouseMove = value; return(tag);
 }
コード例 #14
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd rowspan(this TagTd tag, int value)
 {
     tag.RowSpan = value; return(tag);
 }
コード例 #15
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd @char(this TagTd tag, char value)
 {
     tag.Char = value; return(tag);
 }
コード例 #16
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd colspan(this TagTd tag, int value)
 {
     tag.ColSpan = value; return(tag);
 }
コード例 #17
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd charoff(this TagTd tag, Length value)
 {
     tag.CharOff = value; return(tag);
 }
コード例 #18
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd @class(this TagTd tag, string value)
 {
     tag.Class = value; return(tag);
 }
コード例 #19
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd valign(this TagTd tag, Valign value)
 {
     tag.Valign = value; return(tag);
 }
コード例 #20
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd title(this TagTd tag, string value)
 {
     tag.Title = value; return(tag);
 }
コード例 #21
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd abbr(this TagTd tag, string value)
 {
     tag.Abbr = value; return(tag);
 }
コード例 #22
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd xmllang(this TagTd tag, string value)
 {
     tag.XmlLang = value; return(tag);
 }
コード例 #23
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd axis(this TagTd tag, string value)
 {
     tag.Axis = value; return(tag);
 }
コード例 #24
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd onclick(this TagTd tag, string value)
 {
     tag.OnClick = value; return(tag);
 }
コード例 #25
0
ファイル: TagTdExtension.cs プロジェクト: bzure/BSA.Net
 public static TagTd onmousedown(this TagTd tag, string value)
 {
     tag.OnMouseDown = value; return(tag);
 }