Example usage for com.itextpdf.text Phrase getInstance

List of usage examples for com.itextpdf.text Phrase getInstance

Introduction

In this page you can find the example usage for com.itextpdf.text Phrase getInstance.

Prototype

public static final Phrase getInstance(final int leading, final String string) 

Source Link

Document

Gets a special kind of Phrase that changes some characters into corresponding symbols.

Usage

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

License:Apache License

public static Phrase getInstance(int leading, String string) {
    return Phrase.getInstance(leading, string);
}