コード例 #1
0
        public void RowSeparated()
        {
            _row = new TableRow();
            _table.Rows.Add(_row);

            _cell = new TableCell();
            _row.Cells.Add(_cell);
        }
コード例 #2
0
        public TableBuilder()
        {
            _table = new Table();

            _row = new TableRow();
            _table.Rows.Add(_row);

            _cell = new TableCell();
            _row.Cells.Add(_cell);
        }
コード例 #3
0
ファイル: NodeVisitor.cs プロジェクト: gregorypilar/interlace
 public virtual void VisitTableCell(TableRow cell)
 {
 }
コード例 #4
0
ファイル: NodeVisitor.cs プロジェクト: gregorypilar/interlace
 public virtual void VisitTableRow(TableRow row)
 {
 }