| Package | Description |
|---|---|
| io.starter.OpenXLS |
The OpenXLS package contains the primary classes for working with spreadsheets.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CellHandle.setVal(boolean b)
Sets the value of this Cell to a boolean value
|
void |
CellHandle.setVal(double d)
Set the Value of the Cell to a double
|
void |
CellHandle.setVal(float f)
Set value of this Cell to a Float
|
void |
CellHandle.setVal(int i)
Set the value of this Cell to an int value
NOTE: setting a Boolean Cell type to a zero or a negative number will set the Cell to 'false'; setting it to an int value 1 or greater will set it to true. |
void |
CellHandle.setVal(Object obj)
Set the val of this Cell to an object
The object may be one of type: String, Float, Integer, Double, Long, Boolean, java.sql.Date, or null To set a Cell to a formula, obj should be a string begining with "=" To set a Cell to an array formula, obj should be a string begining with "{=" If you wish to put a line break in a string value, use the newline "\n" character. |
void |
WorkSheet.setVal(String address,
double d)
Set the double value of the Cell at the given address
|
void |
WorkSheetHandle.setVal(String address,
double d)
Set the double value of the Cell at the given address
|
void |
WorkSheet.setVal(String address,
int i)
Set the int value of the Cell at the given address
|
void |
WorkSheetHandle.setVal(String address,
int i)
Set the int value of the Cell at the given address
|
void |
WorkSheet.setVal(String address,
Object val)
Set the Object value of the Cell at the given address.
|
void |
WorkSheetHandle.setVal(String address,
Object val)
Set the Object value of the Cell at the given address.
|
void |
WorkSheet.setVal(String address,
String s)
Set the String value of the Cell at the given address
|
void |
WorkSheetHandle.setVal(String address,
String s)
Set the String value of the Cell at the given address
|
Copyright © 2002–2019 Starter Inc.. All rights reserved.