Uses of Class
com.lowagie.text.TableRectangle
-
Packages that use TableRectangle Package Description com.lowagie.text -
-
Uses of TableRectangle in com.lowagie.text
Subclasses of TableRectangle in com.lowagie.text Modifier and Type Class Description class
Cell
ACell
is aRectangle
containing otherElement
s.class
Table
ATable
is aRectangle
that containsCell
s, ordered in some kind of matrix.Fields in com.lowagie.text declared as TableRectangle Modifier and Type Field Description protected TableRectangle[]
Row. cells
This is the array of Objects (Cell
orTable
).Methods in com.lowagie.text that return TableRectangle Modifier and Type Method Description TableRectangle
Row. getCell(int column)
Gets aCell
orTable
from a certain column.TableRectangle
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 TableRectangle Modifier and Type Method Description (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.
-