Example usage for Java com.lowagie.text Cell fields, constructors, methods, implement or subclass
The text is from its open source code.
Cell(boolean dummy) Constructs an empty Cell (for internal use only). | |
Cell(String content) Constructs a Cell with a certain content. The | |
Cell(Element element) Constructs a Cell with a certain Element . if the element is a | |
Cell() Constructs an empty Cell . |
boolean | add(Object o) Add an Object to this cell. |
void | addElement(Element element) Adds an element to this Cell . |
int | getColspan() Gets the colspan. |
Iterator | getElements() Gets an iterator of Element s. |
int | getHorizontalAlignment() Gets the horizontal alignment. |
int | getRowspan() Gets the rowspan. |
int | getVerticalAlignment() Gets the vertical alignment. |
void | setColspan(int value) Sets the colspan. |
void | setHeader(boolean value) Sets header. |
void | setHorizontalAlignment(int value) Sets the horizontal alignment. |
void | setHorizontalAlignment(String alignment) Sets the alignment of this cell. |
void | setLeading(float value) Sets the leading. |
void | setMaxLines(int value) Setter for maxLines |
void | setRowspan(int value) Sets the rowspan. |
void | setUseAscender(boolean use) Sets the value of useAscender. |
void | setUseDescender(boolean use) Sets the value of useDescender. |
void | setVerticalAlignment(int value) Sets the vertical alignment. |
void | setVerticalAlignment(String alignment) Sets the alignment of this paragraph. |
void | setWidth(float value) Sets the width. |
void | setWidth(String value) Sets the width. |