嵌入PdfpTable单元中的PdfpTable两侧都有白色空间

时间:2016-05-31 14:12:46

标签: c# itextsharp pdfptable

我有一个主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);

我尝试设置每列的宽度,删除填充,并设置父表和子表的总宽度,但结果是混合的。

1 个答案:

答案 0 :(得分: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()方法,因为我' m传递绝对值(而你传递相对值)。

最终结果如下:cmp_nested_tables6.pdf

enter image description here

如您所见,两侧都没有空白区域。