Example #1
0
 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;
 }
Example #2
0
 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;
 }
Example #3
0
 private MRow AddRow(Node node, int index)
 {
     MRow row = new MRow(this, node, index);
     this.rows.Add(row);
     return row;
 }