Example usage for com.lowagie.text.pdf PdfPCell getColumn

List of usage examples for com.lowagie.text.pdf PdfPCell getColumn

Introduction

In this page you can find the example usage for com.lowagie.text.pdf PdfPCell getColumn.

Prototype

public ColumnText getColumn() 

Source Link

Document

Gets the ColumnText with the content of the cell.

Usage

From source file:fr.opensagres.xdocreport.itext.extension.ExtendedParagraph.java

License:Open Source License

private PdfPCell createCell() {
    PdfPCell cell = new PdfPCell();
    cell.setBorder(Table.NO_BORDER);/*from   w w  w  .j av  a2s .  c o  m*/
    cell.setPadding(0.0f);
    cell.setUseBorderPadding(true);
    cell.getColumn().setAdjustFirstLine(false);
    return cell;
}

From source file:org.odftoolkit.odfdom.converter.internal.itext.stylable.StylableParagraph.java

License:Open Source License

private PdfPCell createCell() {
    PdfPCell cell = new PdfPCell();
    cell.setBorder(Table.NO_BORDER);/*from ww w  .  ja  v  a  2s. c  o  m*/
    cell.setPadding(0.0f);
    cell.setUseBorderPadding(true);
    cell.getColumn().setAdjustFirstLine(false);
    cell.setUseDescender(true);
    return cell;
}