Ejemplo n.º 1
0
 public static Tr AddTable(this Tr tr, Table table)
 {
     tr.AddChildInner(table);
     return(tr);
 }
Ejemplo n.º 2
0
 public static Tr AddTh(this Tr tr, string content)
 {
     tr.AddChildInner(new Th(content));
     return(tr);
 }
Ejemplo n.º 3
0
 public static Tr AddTd(this Tr tr, Td td)
 {
     tr.AddChildInner(td);
     return(tr);
 }
Ejemplo n.º 4
0
 public static Tr AddTh(this Tr tr, Th th)
 {
     tr.AddChildInner(th);
     return(tr);
 }
Ejemplo n.º 5
0
 public static Tr AddChild(this Tr tr, IChildOfTr childofTr)
 {
     tr.AddChildInner(childofTr);
     return(tr);
 }