public TableRow()
 {
     Attributes = new TagAttributeCollection(this);
     Cells      = new NodeCollection <TableCell>(this);
 }
Beispiel #2
0
 public DebugView(NodeCollection <TNode> owner)
 {
     this.owner = owner;
 }
 public Table()
 {
     Attributes = new TagAttributeCollection(this);
     Rows       = new NodeCollection <TableRow>(this);
 }
Beispiel #4
0
 public MyEnumerator(NodeCollection <TNode> owner)
 {
     Debug.Assert(owner != null);
     _Owner = owner;
 }