using System;
namespace iTextSharp.text.pdf
{
/// 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.
*
* @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);
}
}