| |
|
| com.lowagie.text.Cell com.lowagie.text.rtf.table.RtfCell
RtfCell | public class RtfCell extends Cell implements RtfExtendedElement(Code) | | The RtfCell wraps a Cell, but can also be added directly to a Table.
The RtfCell is an extension of Cell, that supports a multitude of different
borderstyles.
version: $Id: RtfCell.java 2796 2007-05-27 09:42:20Z psoares33 $ author: Mark Hall (mhall@edu.uni-klu.ac.at) author: Steffen Stundzig author: Benoit Wiart author: Thomas Bickel (tmb99@inode.at) See Also: com.lowagie.text.rtf.table.RtfBorder |
RtfCell | public RtfCell()(Code) | | Constructs an empty RtfCell
|
RtfCell | public RtfCell(String content)(Code) | | Constructs a RtfCell based upon a String
Parameters: content - The String to base the RtfCell on |
RtfCell | public RtfCell(Properties properties)(Code) | | Constructs a RtfCell based upon certain Properties
Parameters: properties - The Properties for this RtfCell |
RtfCell | protected RtfCell(boolean deleted)(Code) | | Constructs a deleted RtfCell.
Parameters: deleted - Whether this RtfCell is actually deleted. |
RtfCell | protected RtfCell(RtfDocument doc, RtfRow row, Cell cell)(Code) | | Constructs a RtfCell based on a Cell.
Parameters: doc - The RtfDocument this RtfCell belongs to Parameters: row - The RtfRow this RtfCell lies in Parameters: cell - The Cell to base this RtfCell on |
getBorders | protected RtfBorderGroup getBorders()(Code) | | Gets the borders of this RtfCell
The borders of this RtfCell |
getCellRight | protected int getCellRight()(Code) | | Gets the right margin of this RtfCell
The right margin of this RtfCell. |
getCellWidth | protected int getCellWidth()(Code) | | Gets the cell width of this RtfCell
The cell width of this RtfCell |
getCellpadding | protected int getCellpadding()(Code) | | Gets the cell padding of this RtfCell
The cell padding of this RtfCell |
getRtfBackgroundColor | protected RtfColor getRtfBackgroundColor()(Code) | | Get the background color of this RtfCell
The background color of this RtfCell |
isDeleted | public boolean isDeleted()(Code) | | Checks whether this RtfCell is a placeholder for
a table cell that has been removed due to col/row spanning.
True if this RtfCell is deleted, false otherwise. |
setBorders | public void setBorders(RtfBorderGroup borderGroup)(Code) | | Set the borders of this RtfCell
Parameters: borderGroup - The RtfBorderGroup to use as borders |
setCellMergeChild | protected void setCellMergeChild(RtfCell mergeParent)(Code) | | Merge this cell into the parent cell.
Parameters: mergeParent - The RtfCell to merge with |
setCellRight | protected void setCellRight(int cellRight)(Code) | | Sets the right margin of this cell. Used in merge operations
Parameters: cellRight - The right margin to use |
setCellWidth | protected void setCellWidth(int cellWidth)(Code) | | Sets the cell width of this RtfCell. Used in merge operations.
Parameters: cellWidth - The cell width to use |
setInHeader | public void setInHeader(boolean inHeader)(Code) | | Sets whether this RtfCell is in a header
Parameters: inHeader - True if this RtfCell is in a header, false otherwise |
setInTable | public void setInTable(boolean inTable)(Code) | | Unused
Parameters: inTable - |
setRtfDocument | public void setRtfDocument(RtfDocument doc)(Code) | | Sets the RtfDocument this RtfCell belongs to
Parameters: doc - The RtfDocument to use |
|
|
|