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