Example usage for com.lowagie.text.pdf ColumnText setAdjustFirstLine

List of usage examples for com.lowagie.text.pdf ColumnText setAdjustFirstLine

Introduction

In this page you can find the example usage for com.lowagie.text.pdf ColumnText setAdjustFirstLine.

Prototype

public void setAdjustFirstLine(boolean adjustFirstLine) 

Source Link

Document

Sets the first line adjustment.

Usage

From source file:fr.opensagres.odfdom.converter.pdf.internal.stylable.StylableDocumentSection.java

License:Open Source License

public static ColumnText createColumnText() {
    ColumnText text = new ColumnText(null);
    // make iText first line alignment compatible with open office
    text.setAdjustFirstLine(false);
    return text;/*from  w  ww  .  j  a  v a2s. com*/
}