Example usage for Java org.apache.poi.ss.usermodel Row fields, constructors, methods, implement or subclass
The text is from its open source code.
Iterator | cellIterator() |
Cell | createCell(int column) Use this to create new cells within the row and return it. |
Cell | createCell(int column, CellType type) Use this to create new cells within the row and return it. |
Cell | getCell(int cellnum) Get the cell representing a given column (logical cell) 0-based. |
Cell | getCell(int cellnum, MissingCellPolicy policy) Returns the cell at the given (0 based) index, with the specified org.apache.poi.ss.usermodel.Row.MissingCellPolicy |
short | getFirstCellNum() Get the number of the first cell contained in this row. |
short | getHeight() Get the row's height measured in twips (1/20th of a point). |
float | getHeightInPoints() Returns row height measured in point size. |
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 |
CellStyle | getRowStyle() Returns the whole-row cell styles. |
Sheet | getSheet() Returns the Sheet this row belongs to |
boolean | getZeroHeight() Get whether or not to display this row with 0 height |
boolean | isFormatted() Is this row formatted? |
void | removeCell(Cell cell) Remove the Cell from this row. |
void | setHeight(short height) Set the row's height or set to ff (-1) for undefined/default-height. |
void | setHeightInPoints(float height) Set the row's height in points. |
void | setRowStyle(CellStyle style) Applies a whole-row cell styling to the row. |
void | setZeroHeight(boolean zHeight) Set whether or not to display this row with 0 height |