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