iTextSharp.text.pdf.PdfPTable.ColumnMeasurementState.BeginCell C# (CSharp) Метод

BeginCell() публичный Метод

public BeginCell ( PdfPCell cell, float completedRowsHeight, float rowHeight ) : void
cell PdfPCell
completedRowsHeight float
rowHeight float
Результат 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