I’m using iTextSharp.text.html.simpleparser.HTMLWorker.ParseToList(TextReader reader, StyleSheet style) to convert an html table into a pdf doc. Some rows contain a lot of data, and may not fit on the current page, so iTextSharp creates a new page and places the row there. If the row doesn’t fit on the next page, it splits it correctly.
Is there a way to tell it to not use these page breaks? Here is what it looks like:

The trick that worked for me is to inspect the results of
ParseToList()and look for any elements that are of typePdfPTable. If you see one set itsSplitLateproperty toFalse. Here’s some VB that you should be able to convert to C# fairly easily: