Uses of Class
com.lowagie.text.TableRectangle
Packages that use TableRectangle
-
Uses of TableRectangle in com.lowagie.text
Subclasses of TableRectangle in com.lowagie.textModifier and TypeClassDescriptionclass
ACell
is aRectangle
containing otherElement
s.class
ATable
is aRectangle
that containsCell
s, ordered in some kind of matrix.Fields in com.lowagie.text declared as TableRectangleModifier and TypeFieldDescriptionprotected TableRectangle[]
Row.cells
This is the array of Objects (Cell
orTable
).Methods in com.lowagie.text that return TableRectangleModifier and TypeMethodDescriptionRow.getCell
(int column) Gets aCell
orTable
from a certain column.Table.getElement
(int row, int column) returns the element at the position row, column (Cast to Cell or Table)Methods in com.lowagie.text with parameters of type TableRectangleModifier and TypeMethodDescription(package private) int
Row.addElement
(TableRectangle element) Adds aCell
to theRow
.(package private) int
Row.addElement
(TableRectangle element, int column) Adds an element to theRow
at the position given.(package private) void
Row.setElement
(TableRectangle aElement, int column) PutsCell
to theRow
at the position given, doesn't reserve colspan.