Example usage for com.lowagie.text ElementTags NEWPAGE

List of usage examples for com.lowagie.text ElementTags NEWPAGE

Introduction

In this page you can find the example usage for com.lowagie.text ElementTags NEWPAGE.

Prototype

String NEWPAGE

To view the source code for com.lowagie.text ElementTags NEWPAGE.

Click Source Link

Document

the newpage tag

Usage

From source file:org.apache.maven.doxia.module.itext.ITextSink.java

License:Apache License

/** {@inheritDoc} */
public void pageBreak() {
    writeStartElement(ElementTags.NEWPAGE);
    writeEndElement();
}