Exemplo n.º 1
0
 public static Tr AddTable(this Tr tr, Table table)
 {
     tr.AddChildInner(table);
     return(tr);
 }
Exemplo n.º 2
0
 internal void AddTrInner(Tr tr)
 {
     _trs.Add(tr);
 }
Exemplo n.º 3
0
 public static Tr AddTh(this Tr tr, string content)
 {
     tr.AddChildInner(new Th(content));
     return(tr);
 }
Exemplo n.º 4
0
 public static Tr AddTh(this Tr tr, Th th)
 {
     tr.AddChildInner(th);
     return(tr);
 }
Exemplo n.º 5
0
 public static Tr AddTd(this Tr tr, Td td)
 {
     tr.AddChildInner(td);
     return(tr);
 }
Exemplo n.º 6
0
 public static Tr AddChild(this Tr tr, IChildOfTr childofTr)
 {
     tr.AddChildInner(childofTr);
     return(tr);
 }
Exemplo n.º 7
0
 public static Table AddTr(this Table table, Tr tr)
 {
     table.AddTrInner(tr);
     return(table);
 }