| Package | Description |
|---|---|
| io.starter.OpenXLS |
The OpenXLS package contains the primary classes for working with spreadsheets.
|
| Modifier and Type | Method and Description |
|---|---|
ArrayList<CellHandle> |
CellRange.getCellsByCol(String col)
Get the cells from a particular column, constrained by the boundaries of the
cellRange
|
ColHandle |
WorkSheet.getCol(int clnum)
returns the Column at the index position
|
ColHandle |
WorkSheetHandle.getCol(int clnum)
returns the ColHandle for the column at index position the column index is
zero based ie: column A = 0
|
ColHandle |
WorkSheet.getCol(String name)
returns the Column at the named position
|
ColHandle |
WorkSheetHandle.getCol(String name)
returns the Column at the named position
|
ColHandle[] |
CellRange.getCols()
Returns an array of Columns (ColHandles) referenced by this CellRange
|
void |
WorkSheet.removeCol(String colstr)
Remove a Column and all associated Cells from
this WorkSheet.
|
void |
WorkSheetHandle.removeCol(String colstr)
Deprecated.
Use
WorkSheetHandle.clearCols(int, int) instead. |
void |
WorkSheet.removeCol(String colstr,
boolean shiftcols)
Remove a Column and all associated Cells from
this WorkSheet.
|
void |
WorkSheetHandle.removeCol(String colstr,
boolean shiftcols)
Deprecated.
|
void |
CellRange.sort(String columnName,
boolean ascending)
Resort all cells in the range according to the column passed in.
|
void |
CellRange.sort(String columnName,
Comparator comparator,
boolean ascending)
Re-sort all cells in this cell range according to the column.
|
Copyright © 2002–2019 Starter Inc.. All rights reserved.