I\'m using C# to create a FlowDocument and fill it with data within a table.
Example:
FlowDocument flowDoc = new FlowDocument(); Table
If I understand right you want to do this:
Section section = new Section(); section.BreakPageBefore = true; section.Blocks.Add(table1); flowDoc.Blocks.Add(section);
If you want to break within a table i suggest it would be better to make a new table.