using System; namespace iTextSharp.text.pdf { /// /// Summary description for IPdfPCellEvent. /// public interface IPdfPCellEvent { /** 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:

*

* The layers are placed in sequence on top of each other. *

* @param cell the cell * @param position the coordinates of the cell * @param canvases an array of PdfContentByte */ void CellLayout(PdfPCell cell, Rectangle position, PdfContentByte[] canvases); } }