public MCell(MRow row, Node node, int index) { this.rowAlign = RowAlign.UNKNOWN; this.columnAlign = HAlign.UNKNOWN; this.columnSpan = 1; this.rowSpan = 1; this.colSpan = 0; this.tableAttrs = AttributeBuilder.FromNode(node); this.row_ = row; this.node = node; this.colSpan = index; }
private MRow AddRow(Node node, int index) { MRow row = new MRow(this, node, index); this.rows.Add(row); return row; }