iTextSharp.text.pdf.events.PdfPTableEventForwarder.TableLayout C# (CSharp) Méthode

TableLayout() public méthode

public TableLayout ( PdfPTable table, float widths, float heights, int headerRows, int rowStart, PdfContentByte canvases ) : void
table PdfPTable
widths float
heights float
headerRows int
rowStart int
canvases PdfContentByte
Résultat void
        public void TableLayout(PdfPTable table, float[][] widths, float[] heights, int headerRows, int rowStart, PdfContentByte[] canvases)
        {
            foreach (IPdfPTableEvent eventa in events) {
                eventa.TableLayout(table, widths, heights, headerRows, rowStart, canvases);
            }
        }