我想获得第一和第二列高度,以了解我是否需要调用document.NewPage()
。但是,如果不将表格添加到文档中,我无法找到方法。
示例:
PdfPRow firstRow = new PdfPRow(cells1.ToArray());
table.Rows.Add(firstRow);
PdfPRow secondRow = new PdfPRow(cells2.ToArray());
table.Rows.Add(secondRow);
float h1 = table.GetRowHeight(0), h2 = table.GetRowHeight(1);
if (currentY - h1 - h2 < 30) document.NewPage();
document.Add(table);
答案 0 :(得分:4)
见my answer here。基本上,在呈现表格之前,您无法知道表格的尺寸。但是,您可以将表格渲染到刚刚丢弃的文档,然后再重新渲染。
答案 1 :(得分:2)
有趣的问题,所以+1。已标记为已回答,但是......
&#34;但是,我无法在不将表格添加到文档的情况下找到方法。&#34;
可能。将PdfPTable
包裹在ColumnText
对象中,并利用ColumnText.Go()重载来获取您想要的任意/行数的总高度,而无需添加PdfPTable
Document
。这是一个简单的辅助方法:
public static float TotalRowHeights(
Document document, PdfContentByte content,
PdfPTable table, params int[] wantedRows)
{
float height = 0f;
ColumnText ct = new ColumnText(content);
// respect current Document.PageSize
ct.SetSimpleColumn(
document.Left, document.Bottom,
document.Right, document.Top
);
ct.AddElement(table);
// **simulate** adding the PdfPTable to calculate total height
ct.Go(true);
foreach (int i in wantedRows) {
height += table.GetRowHeight(i);
}
return height;
}
使用5.2.0.0测试的简单用例:
using (Document document = new Document()) {
PdfWriter writer = PdfWriter.GetInstance(document, STREAM);
document.Open();
PdfPTable table = new PdfPTable(4);
for (int i = 1; i < 20; ++i) {
table.AddCell(i.ToString());
}
int[] wantedRows = {0, 2, 3};
document.Add(new Paragraph(string.Format(
"Simulated table height: {0}",
TotalRowHeights(document, writer.DirectContent, table, wantedRows)
)));
// uncomment block below to verify correct height is being calculated
/*
document.Add(new Paragraph("Add the PdfPTable"));
document.Add(table);
float totalHeight = 0f;
foreach (int i in wantedRows) {
totalHeight += table.GetRowHeight(i);
}
document.Add(new Paragraph(string.Format(
"Height after adding table: {0}", totalHeight
)));
*/
document.Add(new Paragraph("Test paragraph"));
}
在用例中使用行1,3和4,但仅用于演示任何组合/行数都可以。
答案 2 :(得分:2)
除非您设置表格的宽度,否则table.GetRowHeight(0)将始终返回零。
// added
table.TotalWidth = 400f;
//
PdfPRow firstRow = new PdfPRow(cells1.ToArray());
table.Rows.Add(firstRow);
PdfPRow secondRow = new PdfPRow(cells2.ToArray());
table.Rows.Add(secondRow);
float h1 = table.GetRowHeight(0), h2 = table.GetRowHeight(1);
if (currentY - h1 - h2 < 30) document.NewPage();
document.Add(table);
答案 3 :(得分:2)
还有另一种方法可以做到这一点: 首先创建表。
this.table = new PdfPTable(relativeColumnWidths);
this.table.SetTotalWidth(absoluteColumnWidths);
this.rowCells.Clear();
您现在可以使用表格单元填充列表:
Paragraph pText = new Paragraph(text, this.font);
PdfPCell cell = new PdfPCell(pText);
this.rowCells.Add(cell);
准备好创建新行时:
PdfPRow row = new PdfPRow(this.rowCells.ToArray());
this.table.Rows.Add(row);
这没什么特别的。但是,如果现在再次设置表格宽度,则可以正确计算行高:
this.table.SetTotalWidth(this.table.AbsoluteWidths);
this.rowCells.Clear();
float newRowsHeight = this.table.GetRowHeight(this.table.Rows.Count - 1);
如果该行不符合您的条件,您只需将其从表的行集合中删除即可。表格的总高度也将正确计算。