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