Using an XSSFWorkbook, I can change the range of a table by doing this:
sheet = (XSSFSheet)wb.getSheetAt(4);
sheet.getTables().get(0).getCTTable().setRef("A1:E5");
sheet.getTables().get(0).getCTTable().getAutoFilter().setRef("A1:E5");
I have to instead use the XSSF Event API and SAX because I'm creating a
large Excel file and have limited memory. How can I achieve the same thing
as above using XSSFReader?
-Kris
--
View this message in context:
http://apache-poi.1045710.n5.nabble.com/Altering-a-Table-through-XSSF-Event-API-tp5712708.html
Sent from the POI - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]