예제 #1
0
 public static TagTh headers(this TagTh tag, string value)
 {
     tag.Headers = value; return(tag);
 }
예제 #2
0
 public static TagTh scope(this TagTh tag, Scope value)
 {
     tag.Scope = value; return(tag);
 }
예제 #3
0
 public static TagTh dir(this TagTh tag, Dir value)
 {
     tag.Dir = value; return(tag);
 }
예제 #4
0
 public static TagTh onmouseup(this TagTh tag, string value)
 {
     tag.OnMouseUp = value; return(tag);
 }
예제 #5
0
 public static TagTh style(this TagTh tag, string value)
 {
     tag.Style = value; return(tag);
 }
예제 #6
0
 public static TagTh lang(this TagTh tag, LangCode value)
 {
     tag.Lang = value; return(tag);
 }
예제 #7
0
 public static TagTh align(this TagTh tag, Align value)
 {
     tag.Align = value; return(tag);
 }
예제 #8
0
 public static TagTh id(this TagTh tag, string value)
 {
     tag.Id = value; return(tag);
 }
예제 #9
0
 public static TagTh onkeydown(this TagTh tag, string value)
 {
     tag.OnKeyDown = value; return(tag);
 }
예제 #10
0
 public static TagTh onkeyup(this TagTh tag, string value)
 {
     tag.OnKeyUp = value; return(tag);
 }
예제 #11
0
 public static TagTh onkeypress(this TagTh tag, string value)
 {
     tag.OnKeyPress = value; return(tag);
 }
예제 #12
0
 public static TagTh onmouseout(this TagTh tag, string value)
 {
     tag.OnMouseOut = value; return(tag);
 }
예제 #13
0
 public static TagTh onmousemove(this TagTh tag, string value)
 {
     tag.OnMouseMove = value; return(tag);
 }
예제 #14
0
 public static TagTh rowspan(this TagTh tag, int value)
 {
     tag.RowSpan = value; return(tag);
 }
예제 #15
0
 public static TagTh @char(this TagTh tag, char value)
 {
     tag.Char = value; return(tag);
 }
예제 #16
0
 public static TagTh colspan(this TagTh tag, int value)
 {
     tag.ColSpan = value; return(tag);
 }
예제 #17
0
 public static TagTh charoff(this TagTh tag, Length value)
 {
     tag.CharOff = value; return(tag);
 }
예제 #18
0
 public static TagTh @class(this TagTh tag, string value)
 {
     tag.Class = value; return(tag);
 }
예제 #19
0
 public static TagTh valign(this TagTh tag, Valign value)
 {
     tag.Valign = value; return(tag);
 }
예제 #20
0
 public static TagTh title(this TagTh tag, string value)
 {
     tag.Title = value; return(tag);
 }
예제 #21
0
 public static TagTh abbr(this TagTh tag, string value)
 {
     tag.Abbr = value; return(tag);
 }
예제 #22
0
 public static TagTh xmllang(this TagTh tag, string value)
 {
     tag.XmlLang = value; return(tag);
 }
예제 #23
0
 public static TagTh axis(this TagTh tag, string value)
 {
     tag.Axis = value; return(tag);
 }
예제 #24
0
 public static TagTh onclick(this TagTh tag, string value)
 {
     tag.OnClick = value; return(tag);
 }
예제 #25
0
 public static TagTh onmousedown(this TagTh tag, string value)
 {
     tag.OnMouseDown = value; return(tag);
 }