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