Java com.itextpdf.layout.element Table fields, constructors, methods, implement or subclass

Example usage for Java com.itextpdf.layout.element Table fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.itextpdf.layout.element Table.

The text is from its open source code.

Constructor

Table(UnitValue[] columnWidths)
Constructs a Table with the preferable column widths.
Table(float[] pointColumnWidths)
Constructs a Table with the preferable column widths.
Table(int numColumns)
Constructs a Table with specified number of columns.

Method

TableaddCell(Cell cell)
Adds a new cell to the table.
TableaddCell(BlockElement blockElement)
Adds a new cell with received blockElement as a content.
TableaddCell(Image image)
Adds a new cell with received image as a content.
TableaddCell(String content)
Adds a new cell with received string as a content.
TableaddHeaderCell(Cell headerCell)
Adds a new cell to the header of the table.
TableaddHeaderCell(BlockElement blockElement)
Adds a new cell with received blockElement as a content to the header of the table.
TableaddHeaderCell(Image image)
Adds a new cell with received image to the header of the table.
TableaddHeaderCell(String content)
Adds a new cell with received string as a content to the header of the table.
TablestartNewRow()
Starts new row.