Good day, I have a newbie's question about the POI API. How can I create a new workbook and add a new sheet with "Right-To-Left" direction?
Workbook wb = new HSSFWorkbook();
Sheet sheet = wb.createSheet("new sheet");
// ???????
I would expect to see the corresponding method in the Sheet's API, something
like
sheet.setDirection(short)
but I couldn't find something suitable
I'm using the newest POI jar available from the site.
Thanks a lot in advance
Mark Bramnik
