Java com.lowagie.text.pdf ColumnText fields, constructors, methods, implement or subclass

Example usage for Java com.lowagie.text.pdf ColumnText fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.lowagie.text.pdf ColumnText.

The text is from its open source code.

Field

intSTART_COLUMN
Initial value of the status.
intNO_MORE_TEXT
Signals that there is no more text available.
intNO_MORE_COLUMN
Signals that there is no more column.

Constructor

ColumnText(PdfContentByte canvas)
Creates a ColumnText.

Method

voidaddElement(Element element)
Adds an element.
voidaddText(Phrase phrase)
Adds a Phrase to the current text array.
voidaddText(Chunk chunk)
Adds a Chunk to the current text array.
ColumnTextduplicate(ColumnText org)
Creates an independent duplicated of the instance org.
floatgetFilledWidth()
Gets the real width used by the largest line.
floatgetYLine()
Gets the yLine.
intgo(boolean simulate)
Outputs the lines to the document.
intgo()
Outputs the lines to the document.
booleanhasMoreText(int status)
Checks the status variable and looks if there's still some text.
voidsetAdjustFirstLine(boolean adjustFirstLine)
Sets the first line adjustment.
voidsetAlignment(int alignment)
Sets the alignment.
voidsetCanvas(PdfContentByte canvas)
Sets the canvas.
voidsetLeading(float leading)
Sets the leading to fixed.
voidsetLeading(float fixedLeading, float multipliedLeading)
Sets the leading fixed and variable.
voidsetRunDirection(int runDirection)
Sets the run direction.
voidsetSimpleColumn(float llx, float lly, float urx, float ury)
Simplified method for rectangular columns.
voidsetSimpleColumn(Phrase phrase, float llx, float lly, float urx, float ury, float leading, int alignment)
Simplified method for rectangular columns.
voidsetSimpleColumn(float llx, float lly, float urx, float ury, float leading, int alignment)
Simplified method for rectangular columns.
voidsetText(Phrase phrase)
Replaces the current text array with this Phrase.
voidsetYLine(float yLine)
Sets the yLine.
voidshowTextAligned(PdfContentByte canvas, int alignment, Phrase phrase, float x, float y, float rotation)
Shows a line of text.