From Large table example:
string theText = ReadDataFromFile(theRez + "text7.txt");
Doc theDoc = new Doc();
// set up document
theDoc.FontSize = 12;
theDoc.Rect.Inset(20, 20);
PDFTable theTable = new PDFTable(theDoc, 6);
// some columns extra width
theTable.SetColumnWidths(new double [] {2, 1, 3 , 2, 1, 4});
theTable.CellPadding = 5;
theTable.RepeatHeader = true;
theText = theText.Replace("\r\n", "\r");
string[] theRows = theText.Split(new char[] {'\r'});
int thePage = 1;
bool theShade = false;
for (int i = 0; i < theRows.Length; i++) {
theTable.NextRow();
string[] theCols = theRows[i].Split(new char[] {'\t'});
theTable.AddHtml(theCols);
if (theDoc.PageNumber > thePage) {
thePage = theDoc.PageNumber;
theShade = true;
}
if (theShade)
theTable.FillRow("200 200 200", theTable.Row);
theShade = ! theShade;
}
theDoc.Flatten();
theDoc.Save(Server.MapPath("table2.pdf"));
theDoc.Clear();
Use the Read() function to open existing files, then crawl thru the tables to get their data, and fill it in datatables as you like.