iTextSharp.text.pdf.events.PdfPCellEventForwarder.CellLayout C# (CSharp) Method

CellLayout() public method

public CellLayout ( PdfPCell cell, Rectangle position, PdfContentByte canvases ) : void
cell iTextSharp.text.pdf.PdfPCell
position iTextSharp.text.Rectangle
canvases iTextSharp.text.pdf.PdfContentByte
return void
        public void CellLayout(PdfPCell cell, Rectangle position, PdfContentByte[] canvases)
        {
            foreach (IPdfPCellEvent eventa in events) {
                eventa.CellLayout(cell, position, canvases);
            }
        }
PdfPCellEventForwarder