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

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

public PdfPCell ( System.Image image, bool fit ) : System
image System.Image
fit bool
Результат System
        public PdfPCell(Image image, bool fit)
            : base(0, 0, 0, 0)
        {
            borderWidth = 0.5f;
            border = BOX;
            column.SetLeading(0, 1);
            if (fit) {
                this.image = image;
                Padding = borderWidth / 2;
            }
            else {
                column.AddText(this.phrase = new Phrase(new Chunk(image, 0, 0, true)));
                Padding = 0;
            }
        }

Same methods

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