List of usage examples for org.apache.poi.ss.usermodel PrintSetup A5_PAPERSIZE
short A5_PAPERSIZE
To view the source code for org.apache.poi.ss.usermodel PrintSetup A5_PAPERSIZE.
Click Source Link
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; }