| Package | Description |
|---|---|
| io.starter.OpenXLS |
The OpenXLS package contains the primary classes for working with spreadsheets.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
WorkBook
An interface representing an OpenXLS WorkBook.
|
interface |
WorkSheet
An interface representing an OpenXLS WorkSheet
|
| Modifier and Type | Class and Description |
|---|---|
class |
AutoFilterHandle
AutoFilterHandle allows for manipulation of the AutoFilters within the
Spreadsheet
|
class |
CellHandle
The CellHandle provides a handle to an XLS Cell and its values.
|
class |
CommentHandle
CommentHandle allows for manipulation of the Note or Comment feature of Excel
In order to create CommentHandles programatically use the methods in WorkSheetHandle or CellHandle
|
class |
ConditionalFormatHandle
ConditionalFormatHandle allows for manipulation of the ConditionalFormat cells in Excel
Using the ConditionalFormatHandle, the affected range of ConditionalFormats can be modified,
along with the formatting applied to the cells when the condition is true.
|
class |
ConditionalFormatRule
ConditionalFormatRule defines a single rule for manipulation of the
ConditionalFormat cells in Excel
Each ConditionalFormatRule contains one rule and corresponding format data.
|
class |
DocumentHandle
Functionality common to all document types.
|
class |
FormatHandle
Provides methods for querying and changing cell formatting information.
|
class |
PrinterSettingsHandle
The PrinterSettingsHandle gives you control over the printer settings for a Sheet such as whether to print in landscape or portrait mode.
|
class |
ValidationHandle
ValidationHandle allows for manipulation of the validation cells in Excel
|
class |
WorkBookHandle
The WorkBookHandle provides a handle to the XLS file and includes convenience
methods for working with the WorkSheets and Cell values within the XLS file.
|
class |
WorkSheetHandle
The WorkSheetHandle provides a handle to a Worksheet within an XLS file
and includes convenience methods for working with the Cell values within the sheet. for example: WorkBookHandle book = new WorkBookHandle("testxls.xls"); WorkSheetHandle sheet1 = book.getWorkSheet("Sheet1"); CellHandle cell = sheet1.getCell("B22"); to add a cell: CellHandle cell = sheet1.add("Hello World","C22"); to add a numeric cell: CellHandle cell = sheet1.add(Integer.valueOf(120),"C23"); to add a formula cell: CellHandle cell = sheet1.add("=PI()","C24"); |
| Modifier and Type | Method and Description |
|---|---|
Handle |
NameHandle.getScope()
Returns a handle to the object (either workbook or sheet) that is scoped
to the name record
Default scope is a WorkBookHandle, else the WorkSheetHandle is returned.
|
| Modifier and Type | Method and Description |
|---|---|
void |
NameHandle.setScope(Handle scope)
Set the scope of this name to that of the handle passed in.
|
Copyright © 2002–2019 Starter Inc.. All rights reserved.