Uses of Class
com.lowagie.text.Cell
-
Packages that use Cell Package Description com.lowagie.text com.lowagie.text.factories com.lowagie.text.pdf -
-
Uses of Cell in com.lowagie.text
Fields in com.lowagie.text declared as Cell Modifier and Type Field Description private Cell
Table. defaultCell
This Empty Cell contains the DEFAULT layout of each Cell added with the method addCell(String content).Methods in com.lowagie.text that return Cell Modifier and Type Method Description Cell
SimpleCell. createCell(SimpleCell rowAttributes)
Creates a Cell with these attributes.Cell
Table. getDefaultCell()
Gets the default layout of the Table.private static Cell
Cell. getDummyCell()
Get dummy cell used when merging inner tables.Methods in com.lowagie.text with parameters of type Cell Modifier and Type Method Description void
Table. addCell(Cell cell)
Adds aCell
to theTable
.void
Table. addCell(Cell aCell, int row, int column)
Adds aCell
to theTable
at a certain row and column.void
Table. addCell(Cell aCell, java.awt.Point aLocation)
Adds aCell
to theTable
at a certain location.private void
Table. assumeTableDefaults(Cell aCell)
Sets the unset cell properties to be the table defaults.private boolean
Table. isValidLocation(Cell aCell, java.awt.Point aLocation)
check ifCell
'fits' the table.private void
Table. placeCell(java.util.ArrayList<Row> someRows, Cell aCell, java.awt.Point aPosition)
Inserts a Cell in a cell-array and reserves cells defined by row-/colspan.void
Table. setDefaultCell(Cell value)
Sets the default layout of the Table to the provided Cell -
Uses of Cell in com.lowagie.text.factories
Methods in com.lowagie.text.factories that return Cell Modifier and Type Method Description static Cell
ElementFactory. getCell(java.util.Properties attributes)
Creates a Cell object based on a list of properties. -
Uses of Cell in com.lowagie.text.pdf
Constructors in com.lowagie.text.pdf with parameters of type Cell Constructor Description PdfCell(Cell cell, int rownumber, float left, float right, float top, float cellspacing, float cellpadding)
Constructs aPdfCell
-object.
-