Example usage for com.lowagie.text.rtf.style RtfFont FONT_SIZE

List of usage examples for com.lowagie.text.rtf.style RtfFont FONT_SIZE

Introduction

In this page you can find the example usage for com.lowagie.text.rtf.style RtfFont FONT_SIZE.

Prototype

null FONT_SIZE

To view the source code for com.lowagie.text.rtf.style RtfFont FONT_SIZE.

Click Source Link

Document

Constant for the font size

Usage

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

License:Open Source License

/**
 * Writes the content of this PatchRtfTable
 *///from w w w. j av  a2  s  .  c om
public void writeContent(final OutputStream result) throws IOException {
    if (!inHeader) {
        if (this.offset != -1) {
            result.write(RtfFont.FONT_SIZE);
            result.write(intToByteArray(this.offset));
        }
        result.write(RtfParagraph.PARAGRAPH);
    }

    final Iterator<PatchRtfRow> iterator = this.rows.iterator();
    while (iterator.hasNext()) {
        final RtfElement re = iterator.next();
        re.writeContent(result);
        iterator.remove();
    }

    result.write(RtfParagraph.PARAGRAPH_DEFAULTS);
}