-
- All Known Implementing Classes:
FieldPositioningEvents,PdfPCellEventForwarder,SimpleCell
public interface PdfPCellEventAn event called for a single cell.- Author:
- Paulo Soares (psoares@consiste.pt)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcellLayout(PdfPCell cell, Rectangle position, PdfContentByte[] canvases)This method is called at the end of the cell rendering.
-
-
-
Method Detail
-
cellLayout
void cellLayout(PdfPCell cell, Rectangle position, PdfContentByte[] canvases)
This method is called at the end of the cell rendering. The text or graphics are added to one of the 4PdfContentBytecontained incanvases.
The indexes tocanvasesare:PdfPTable.BASECANVAS- the originalPdfContentByte. 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.
- Parameters:
cell- the cellposition- the coordinates of the cellcanvases- an array ofPdfContentByte
-
-