/**
* @see com.lowagie.text.pdf.PdfPCellEvent#cellLayout(com.lowagie.text.pdf.PdfPCell, com.lowagie.text.LwgRectangle, com.lowagie.text.pdf.PdfContentByte[])
*/
public void cellLayout(LwgPdfPCell cell, LwgRectangle position, PdfContentByte[] canvases) {
PdfPCellEvent event;
for (Iterator i = events.iterator(); i.hasNext(); ) {
event = (PdfPCellEvent)i.next();
event.cellLayout(cell, position, canvases);
}
}