0

我有一个主 PdfpTable,其中有一列用作父表。然后,我将使用动态列数创建的表添加到父表中。

所以每个表都是父表中的一行。我得到了我想要的,除了几件事:

1) 表格在左右两边都添加了显着的空白;我希望子表填充行空间。

2)列宽不成立。每个新表的第一列会根据其拥有的总列数更改宽度。

3)主表宽度似乎不受 .TotalWidth 设置的影响

 PdfPTable mainTable = new PdfPTable(1);
    mainTable.TotalWidth = 1000f;

        //Iterating through some data, get the count then create tables.
        PdfPTable subTable = new PdfPTable(colCount);

//I tried setting the widths to fix issue 2
    float[] colWidths = new float[colCount];
                        colWidths[0] = 50f;
                        for (int i = 1; i < colCount; i++)
                        {
                            colWidths[i] = 50f;
                        }
                        subTable.SetWidths(colWidths);

        PdfPCell cell = new PdfPCell();
                                cell.AddElement("test");
                                subTable.AddCell(cell);

         PdfPCell tblCell = new PdfPCell();
                            //tblCell.Padding = 0f;
                            //tblCell.PaddingLeft = 0f;
                            //tblCell.PaddingRight = 0f;
                            tblCell.AddElement(subTable);
                            mainTable.AddCell(tblCell);

我尝试设置每列的宽度,删除填充,并设置父表和子表的总宽度,但结果好坏参半。

4

1 回答 1

0

嵌套表有不同的方法,每种不同的方法都有自己的特定行为。我在NestedTables6示例中演示了这一点:

首先我们创建主表:

PdfPTable mainTable = new PdfPTable(1);
mainTable.setTotalWidth(1000);
mainTable.setLockedWidth(true);

在定义总宽度时,我们还必须锁定宽度。我的代码是用 Java 编写的,但是很容易使代码适应 C#。有点像mainTable.LockedWidth = true;(我对 C# 不是很精通,所以如果我的 C# 不完全正确,你将不得不原谅我)。

嵌套表格的最简单方法是使用addCell(). 但是:在这种情况下,使用默认填充,这意味着您必须将默认填充设置为0. 在 C# 中,这将类似于:mainTable.DefaultCell.Padding = 0;在 Java 中,它是这样完成的:

mainTable.getDefaultCell().setPadding(0);
PdfPTable subTable1 = new PdfPTable(5);
subTable1.setTotalWidth(new float[]{200, 200, 200, 100, 300});
subTable1.setLockedWidth(true);
subTable1.addCell("test 1");
subTable1.addCell("test 2");
subTable1.addCell("test 3");
subTable1.addCell("test 4");
subTable1.addCell("test 5");
mainTable.addCell(subTable1);

嵌套表的第二种方法是PdfPCell使用表作为参数创建一个。在这种情况下,默认填充是0.

PdfPTable subTable2 = new PdfPTable(5);
subTable2.setTotalWidth(new float[]{200, 100, 200, 200, 300});
subTable2.setLockedWidth(true);
subTable2.addCell("test 1");
subTable2.addCell("test 2");
subTable2.addCell("test 3");
subTable2.addCell("test 4");
subTable2.addCell("test 5");
PdfPCell cell2 = new PdfPCell(subTable2);
mainTable.addCell(cell2);

您正在使用该AddElement()方法。这也有效,但您需要将填充设置为0

PdfPTable subTable3 = new PdfPTable(5);
subTable3.setTotalWidth(new float[]{200, 200, 100, 200, 300});
subTable3.setLockedWidth(true);
subTable3.addCell("test 1");
subTable3.addCell("test 2");
subTable3.addCell("test 3");
subTable3.addCell("test 4");
subTable3.addCell("test 5");
PdfPCell cell3 = new PdfPCell();
cell3.setPadding(0);
cell3.addElement(subTable3);
mainTable.addCell(cell3);

请注意,我将表的总宽度定义为 1000,并且我确保子表的所有列宽之和等于 1000。我也使用了该setTotalWidths()方法,因为我传递的是绝对值(而你是传递相对值)。

最终结果如下所示:cmp_nested_tables6.pdf

在此处输入图像描述

如您所见,两边没有空白。

于 2016-05-31T15:08:02.733 回答