Example usage for com.itextpdf.text.pdf ColumnText getWidth

List of usage examples for com.itextpdf.text.pdf ColumnText getWidth

Introduction

In this page you can find the example usage for com.itextpdf.text.pdf ColumnText getWidth.

Prototype

public static float getWidth(final Phrase phrase, final int runDirection, final int arabicOptions) 

Source Link

Document

Gets the width that the line will occupy after writing.

Usage

From source file:com.chaschev.itext.ColumnTextBuilder.java

License:Apache License

public static float getWidth(Phrase phrase, int runDirection, int arabicOptions) {
    return ColumnText.getWidth(phrase, runDirection, arabicOptions);
}