如何在iText 7中设置和/或检索默认的单元格填充

时间:2016-08-17 16:06:38

标签: itext7

使用Table和Cell类在iText 7中创建表时,表格单元格默认内置一些填充。据我所知,通过查看生成的文档,它似乎是大约2个PDF单元。

我有什么方法可以检索此值以用于计算?另外,有什么方法可以更改此默认值,以便我可以设置自己的填充以在所有表​​中的所有单元格中使用,而不必在每个单元格上单独设置它?

3 个答案:

答案 0 :(得分:4)

请查看iText 7: Building Blocks教程。

Before we start部分中,我们看到每个构建块都是从名为ElementPropertyContainer的类派生的。这个类是属性的容器。

Cell类的情况下,有一组定义填充的属性。您可以通过这种方式获取这些属性(使用AbstractElement类的方法),如下所示:

System.out.println(cell.getProperty(Property.PADDING_LEFT));
System.out.println(cell.getProperty(Property.PADDING_RIGHT));
System.out.println(cell.getProperty(Property.PADDING_TOP));
System.out.println(cell.getProperty(Property.PADDING_BOTTOM));

但是,如果您还可以简单地使用BlockElement类中提供的便捷方法,那么为什么会这样做很难:

System.out.println(cell.getPaddingLeft());
System.out.println(cell.getPaddingRight());
System.out.println(cell.getPaddingTop());
System.out.println(cell.getPaddingBottom());

正如您在教程中看到的,Cell类是BlockElement类的子类。 BlockElementAbstractElement类的子类。 AbstractElement类是ElementPropertyContainer类的子类。

如果您想更改填充(如果您愿意,可以更改边距),请阅读该教程的chapter 5。它有一个名为CellMarginPadding的例子:

public void createPdf(String dest) throws IOException {
    PdfDocument pdf = new PdfDocument(new PdfWriter(dest));
    Document document = new Document(pdf);
    Table table = new Table(new float[]{2, 1, 1});
    table.setBackgroundColor(Color.ORANGE);
    table.setWidthPercent(80);
    table.setHorizontalAlignment(HorizontalAlignment.CENTER);
    table.addCell(
        new Cell(1, 3).add("Cell with colspan 3")
            .setPadding(10).setMargin(5).setBackgroundColor(Color.GREEN));
    table.addCell(new Cell(2, 1).add("Cell with rowspan 2")
        .setMarginTop(5).setMarginBottom(5).setPaddingLeft(30)
        .setFontColor(Color.WHITE).setBackgroundColor(Color.BLUE));
    table.addCell(new Cell().add("row 1; cell 1")
        .setFontColor(Color.WHITE).setBackgroundColor(Color.RED));
    table.addCell(new Cell().add("row 1; cell 2"));
    table.addCell(new Cell().add("row 2; cell 1").setMargin(10)
        .setFontColor(Color.WHITE).setBackgroundColor(Color.RED));
    table.addCell(new Cell().add("row 2; cell 2").setPadding(10)
        .setFontColor(Color.WHITE).setBackgroundColor(Color.RED));
    document.add(table);
    document.close();
}

这就是它的样子:

enter image description here

我很抱歉,如果它有点伤害眼睛,但使用这些颜色似乎是解释边缘和填充之间差异的最好方法。

大多数属性都是继承的。例如:如果您为Div设置字体,则该字体将成为添加到Div的所有元素的默认字体。但也有一些例外。填充是其中之一。这是定义Cell类特定属性的默认值的方式:

@Override
public <T1> T1 getDefaultProperty(int property) {
    switch (property) {
        case Property.BORDER:
            return (T1) (Object) DEFAULT_BORDER;
        case Property.PADDING_BOTTOM:
        case Property.PADDING_LEFT:
        case Property.PADDING_RIGHT:
        case Property.PADDING_TOP:
            return (T1) (Object) 2f;
        default:
            return super.<T1>getDefaultProperty(property);
    }
}

如您所见,完整单元格没有填充值;填充由四个值组成,默认情况下偶然相同。

如果您不想为每个Cell定义与默认值不同的填充,只需创建Cell的子类并将其命名为MyCustomCell。通过覆盖getDefaultProperty()类,使其自定义使用您选择的填充。

在本教程中,您将找到一个子类的示例,该子类绘制具有圆角的边框,这样我们就不必在每次想要引入圆角时都设置声明渲染器。

我是该文档的原作者。我希望您能够回答有关iText 7中Cell和其他对象的这些问题和其他问题。

答案 1 :(得分:0)

我在C#per @Bruno Lowagie覆盖路由中执行此操作,将默认值设置为无填充且没有边框:

public class BorderlessCell : Cell
    {
        public BorderlessCell(int rowSpan, int colSpan) : base(rowSpan, colSpan) { }
        public BorderlessCell() : base() { }
        public override T1 GetDefaultProperty<T1>(int property) 
        {
            switch (property) 
            {
                case Property.BORDER:
                    return (T1)(Object)(Border.NO_BORDER);
                case Property.PADDING_BOTTOM:
                case Property.PADDING_LEFT:
                case Property.PADDING_RIGHT:
                case Property.PADDING_TOP:
                   return (T1)(Object)(0);
                default:
                    return base.GetDefaultProperty<T1>(property);
            }
        }
    }

答案 2 :(得分:0)

对我有用的是编辑 WidthPercentage,例如:

table.setWidthPercentage(100)