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) 

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) {
    return ColumnText.getWidth(phrase);
}