Uses of Class
org.apache.poi.xssf.usermodel.XSSFTableColumn
-
Packages that use XSSFTableColumn Package Description org.apache.poi.xssf.usermodel org.apache.poi.xssf.usermodel.helpers -
-
Uses of XSSFTableColumn in org.apache.poi.xssf.usermodel
Methods in org.apache.poi.xssf.usermodel that return XSSFTableColumn Modifier and Type Method Description XSSFTableColumn
XSSFTable. createColumn(java.lang.String columnName)
Add a new column to the right end of the table.XSSFTableColumn
XSSFTable. createColumn(java.lang.String columnName, int columnIndex)
Adds a new column to the table.Methods in org.apache.poi.xssf.usermodel that return types with arguments of type XSSFTableColumn Modifier and Type Method Description java.util.List<XSSFTableColumn>
XSSFTable. getColumns()
Note this list is static - once read, it does not notice later changes to the underlying column structures To clear the cache, callXSSFTable.updateHeaders()
Methods in org.apache.poi.xssf.usermodel with parameters of type XSSFTableColumn Modifier and Type Method Description void
XSSFTable. removeColumn(XSSFTableColumn column)
Remove a column from the table. -
Uses of XSSFTableColumn in org.apache.poi.xssf.usermodel.helpers
Methods in org.apache.poi.xssf.usermodel.helpers that return XSSFTableColumn Modifier and Type Method Description XSSFTableColumn
XSSFXmlColumnPr. getTableColumn()
Get the column for which these XML column properties are set.Constructors in org.apache.poi.xssf.usermodel.helpers with parameters of type XSSFTableColumn Constructor Description XSSFXmlColumnPr(XSSFTableColumn tableColumn, org.openxmlformats.schemas.spreadsheetml.x2006.main.CTXmlColumnPr ctXmlColumnPr)
Create a new XSSFXmlColumnPr (XML column properties) wrapper around a CTXmlColumnPr.
-