Exemplo n.º 1
0
 public TagNode(string name)
 {
     Name       = name;
     Attributes = new TagAttributeCollection(this);
 }
Exemplo n.º 2
0
 public Table()
 {
     Attributes = new TagAttributeCollection(this);
     Rows       = new NodeCollection <TableRow>(this);
 }
Exemplo n.º 3
0
 public TableRow()
 {
     Attributes = new TagAttributeCollection(this);
     Cells      = new NodeCollection <TableCell>(this);
 }
Exemplo n.º 4
0
 public TableContentNode(Run content)
 {
     Attributes = new TagAttributeCollection(this);
     Content    = content;
 }