Example usage for com.lowagie.text.rtf.text RtfNewPage RtfNewPage

List of usage examples for com.lowagie.text.rtf.text RtfNewPage RtfNewPage

Introduction

In this page you can find the example usage for com.lowagie.text.rtf.text RtfNewPage RtfNewPage.

Prototype

public RtfNewPage(RtfDocument doc) 

Source Link

Document

Constructs a RtfNewPage

Usage

From source file:org.pentaho.reporting.engine.classic.core.modules.output.table.rtf.itext.PatchRtfWriter2.java

License:Open Source License

/**
 * Adds a page break/* w w  w .  jav a 2s .c om*/
 *
 * @return <code>false</code>
 */
public boolean newPage() {
    rtfDoc.add(new RtfNewPage(rtfDoc));
    return true;
}