iTextSharp.text.pdf.PdfPTable.ColumnMeasurementState.BeginCell C# (CSharp) Method

BeginCell() public method

public BeginCell ( PdfPCell cell, float completedRowsHeight, float rowHeight ) : void
cell PdfPCell
completedRowsHeight float
rowHeight float
return void
            public void BeginCell(PdfPCell cell, float completedRowsHeight, float rowHeight) {
                rowspan = cell.Rowspan;
                colspan = cell.Colspan;
                height = completedRowsHeight + Math.Max(cell.GetMaxHeight(), rowHeight);
            }
PdfPTable.ColumnMeasurementState