Ejemplo n.º 1
0
        public void AddSingleCellRow(Action <CellBuilder> configure)
        {
            var builder = new RowBuilder(Table.Rows.Add());

            builder.AddCell(_columnsCount, configure);
        }
Ejemplo n.º 2
0
        public void AddRow(Action <RowBuilder> configure)
        {
            var builder = new RowBuilder(Table.Rows.Add());

            configure(builder);
        }