I'm currently building a table up using rows and cells, which is different to the way ive done it in the past of simply calling builder.InsertCell(). I need to do it this way as after it is build I need to reprocess the table changing merges and borders.
The problem i now have is the ParagraphFormat.KeepWithNext property no longer works. Where as before I would simply call builder.ParagraphFormat.KeepWithNext = true every time I called InertCell(), as I'm now building the table object this option doesn't work. Is there a similar way for me to do this for an individual Aspose.Words.Row, my code example is below and any help would be grateful:
Aspose.Words.Row row = new Aspose.Words.Row(doc);
//is there something like:
row.RowFormat.KeepWithNext = true;