iTextSharp pdfpTable在同一页面的两列中流动

时间:2015-02-25 16:49:37

标签: c# asp.net-mvc pdf-generation itextsharp pdfptable

我使用iTextSharp PdfPTtable从数据库创建表。当表格很长(很长但只有3列)时,我设法让表格流动(或继续)到下一个PDF页面。但我希望它们继续在同一页面的右侧(或列)。之后,它必须继续下一页(左栏,然后是右栏,依此类推......)。 This is how i want the data from the database to flow.

1 个答案:

答案 0 :(得分:3)

您的要求(几乎)与我书中的一个示例完全匹配。 请查看column_table.pdf的第3页及更高版本。

这本书有Java version示例,但还有version ported to C#

基本上,只要列中有内容,您就需要将PdfPTable添加到ColumnText对象和go()

// Column definition
float[][] x = {
    new float[] { document.Left, document.Left + 380 },
    new float[] { document.Right - 380, document.Right }
};
column.AddElement(yourTable);
int count = 0; // can be 0 or 1 if your page is divided in 2 parts
float height = 0;
int status = 0;
// render the column as long as it has content
while (ColumnText.HasMoreText(status)) {
    // add the top-level header to each new page
    if (count == 0) {
         AddFooterTable(); // for you to implement to add a footer
         height = AddHeaderTable(); // for you to implement to add a header
    }
    // set the dimensions of the current column
    column.SetSimpleColumn(
        x[count][0], document.Bottom,
        x[count][1], document.Top - height - 10
    );
    // render as much content as possible
    status = column.Go();
    // go to a new page if you've reached the last column
    if (++count > 1) {
        count = 0;
        document.NewPage();
    }
}
document.NewPage();
相关问题