iTextSharp.text.pdf.PdfPCell.PdfPCell C# (CSharp) Метод

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

public PdfPCell ( PdfPTable table, PdfPCell style ) : System
table PdfPTable
style PdfPCell
Результат System
        public PdfPCell(PdfPTable table, PdfPCell style)
            : base(0, 0, 0, 0)
        {
            borderWidth = 0.5f;
            border = BOX;
            column.SetLeading(0, 1);
            this.table = table;
            table.WidthPercentage = 100;
            table.ExtendLastRow = true;
            column.AddElement(table);
            if (style != null) {
                CloneNonPositionParameters(style);
                verticalAlignment = style.verticalAlignment;
                paddingLeft = style.paddingLeft;
                paddingRight = style.paddingRight;
                paddingTop = style.paddingTop;
                paddingBottom = style.paddingBottom;
                colspan = style.colspan;
                rowspan = style.rowspan;
                cellEvent = style.cellEvent;
                useDescender = style.useDescender;
                useBorderPadding = style.useBorderPadding;
                rotation = style.rotation;
            }
            else {
                Padding = 0;
            }
        }

Same methods

PdfPCell::PdfPCell ( ) : System
PdfPCell::PdfPCell ( System.Image image ) : System
PdfPCell::PdfPCell ( System.Image image, bool fit ) : System
PdfPCell::PdfPCell ( PdfPCell cell ) : System
PdfPCell::PdfPCell ( PdfPTable table ) : System
PdfPCell::PdfPCell ( Phrase phrase ) : System