Uses of Class
com.aowagie.text.Cell
-
Packages that use Cell Package Description com.aowagie.text com.aowagie.text.factories com.aowagie.text.pdf -
-
Uses of Cell in com.aowagie.text
Fields in com.aowagie.text declared as Cell Modifier and Type Field Description private CellTable. defaultCellThis Empty Cell contains the DEFAULT layout of each Cell added with the method addCell(String content).Methods in com.aowagie.text that return Cell Modifier and Type Method Description CellTable. getDefaultCell()Gets the default layout of the Table.CellTable. getDefaultLayout()Deprecated.As of iText 2.0.7, replaced byTable.getDefaultCell(), scheduled for removal at 2.2.0private static CellCell. getDummyCell()Get dummy cell used when merging inner tables.Methods in com.aowagie.text with parameters of type Cell Modifier and Type Method Description voidTable. addCell(Cell cell)Adds aCellto theTable.private voidTable. addCell(Cell aCell, java.awt.Point aLocation)Adds aCellto theTableat a certain location.private voidTable. assumeTableDefaults(Cell aCell)Sets the unset cell properties to be the table defaults.private booleanTable. isValidLocation(Cell aCell, java.awt.Point aLocation)check ifCell'fits' the table.private voidTable. placeCell(java.util.ArrayList someRows, Cell aCell, java.awt.Point aPosition)Inserts a Cell in a cell-array and reserves cells defined by row-/colspan.voidTable. setDefaultCell(Cell value)Sets the default layout of the Table to the provided CellvoidTable. setDefaultLayout(Cell value)Deprecated.As of iText 2.0.7, replaced byTable.setDefaultCell(Cell), scheduled for removal at 2.2.0 -
Uses of Cell in com.aowagie.text.factories
Methods in com.aowagie.text.factories that return Cell Modifier and Type Method Description static CellElementFactory. getCell(java.util.Properties attributes)Creates a Cell object based on a list of properties. -
Uses of Cell in com.aowagie.text.pdf
Constructors in com.aowagie.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.
-