Example usage for com.itextpdf.text Chunk createWhitespace

List of usage examples for com.itextpdf.text Chunk createWhitespace

Introduction

In this page you can find the example usage for com.itextpdf.text Chunk createWhitespace.

Prototype

public static Chunk createWhitespace(final String content, final boolean preserve) 

Source Link

Usage

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

License:Apache License

public static Chunk createWhitespace(String content, boolean preserve) {
    return Chunk.createWhitespace(content, preserve);
}