Example usage for Java org.apache.poi.xssf.usermodel XSSFRow fields, constructors, methods, implement or subclass
The text is from its open source code.
Iterator | cellIterator() Cell iterator over the physically defined cells: for (Iterator |
XSSFCell | createCell(int columnIndex) Use this to create new cells within the row and return it. |
XSSFCell | createCell(int columnIndex, CellType type) Use this to create new cells within the row and return it. |
XSSFCell | getCell(int cellnum) Returns the cell at the given (0 based) index, with the org.apache.poi.ss.usermodel.Row.MissingCellPolicy from the parent Workbook. |
XSSFCell | getCell(int cellnum, MissingCellPolicy policy) Returns the cell at the given (0 based) index, with the specified org.apache.poi.ss.usermodel.Row.MissingCellPolicy |
CTRow | getCTRow() Returns the underlying CTRow xml bean containing all cell definitions in this row |
short | getFirstCellNum() Get the 0-based number of the first cell contained in this row. |
short | getHeight() Get the row's height measured in twips (1/20th of a point). |
short | getLastCellNum() Gets the index of the last cell contained in this row PLUS ONE. |
int | getPhysicalNumberOfCells() Gets the number of defined cells (NOT number of cells in the actual row!). |
int | getRowNum() Get row number this row represents |
XSSFSheet | getSheet() Returns the XSSFSheet this row belongs to |
void | removeCell(Cell cell) Remove the Cell from this row. |
void | setHeight(short height) Set the height in "twips" or 1/20th of a point. |
void | setHeightInPoints(float height) Set the row's height in points. |
void | setRowStyle(CellStyle style) Applies a whole-row cell styling to the row. |