Example usage for org.apache.poi.ss.usermodel PrintSetup A5_PAPERSIZE

List of usage examples for org.apache.poi.ss.usermodel PrintSetup A5_PAPERSIZE

Introduction

In this page you can find the example usage for org.apache.poi.ss.usermodel PrintSetup A5_PAPERSIZE.

Prototype

short A5_PAPERSIZE

To view the source code for org.apache.poi.ss.usermodel PrintSetup A5_PAPERSIZE.

Click Source Link

Document

A5 - 148x210 mm

Usage

From source file:jdbreport.model.io.xls.poi.Excel2003Writer.java

License:Apache License

private short convertPaperSize(PaperSize paperSize) {
    if (paperSize == PaperSize.Letter) {
        return PrintSetup.LETTER_PAPERSIZE;
    }//from   w w  w. j  av a2 s  .  c o  m
    if (paperSize == PaperSize.A4) {
        return PrintSetup.A4_PAPERSIZE;
    }
    if (paperSize == PaperSize.A5) {
        return PrintSetup.A5_PAPERSIZE;
    }
    return 0;
}