| com.lowagie.text.pdf.PdfPCellEvent
All known Subclasses: com.lowagie.text.pdf.events.PdfPCellEventForwarder, com.lowagie.text.SimpleCell, com.lowagie.text.pdf.events.FieldPositioningEvents,
PdfPCellEvent | public interface PdfPCellEvent (Code) | | An event called for a single cell.
author: Paulo Soares (psoares@consiste.pt) |
cellLayout | public void cellLayout(PdfPCell cell, Rectangle position, PdfContentByte[] canvases)(Code) | | This method is called at the end of the cell rendering. The text or graphics are added to
one of the 4 PdfContentByte contained in
canvases .
The indexes to canvases are:
PdfPTable.BASECANVAS - the original PdfContentByte . Anything placed here
will be under the cell.
PdfPTable.BACKGROUNDCANVAS - the layer where the background goes to.
PdfPTable.LINECANVAS - the layer where the lines go to.
PdfPTable.TEXTCANVAS - the layer where the text go to. Anything placed here
will be over the cell.
The layers are placed in sequence on top of each other.
Parameters: cell - the cell Parameters: position - the coordinates of the cell Parameters: canvases - an array of PdfContentByte |
|
|