Modifier and Type | Method and Description |
---|---|
void |
Content.addTableStyle(TableStyle ts) |
void |
OdsFile.setCell(int nTab,
int nRow,
int nCol,
java.util.Calendar cal,
TableStyle ts)
Sets the cell value in table nTab to the date from the Calendar object.
|
void |
OdsFile.setCell(int nTab,
int nRow,
int nCol,
double dValue,
TableStyle ts)
Sets the cell value in table nTab to the given value, the value type is
TableCell.STYLE_FLOAT.
|
void |
OdsFile.setCell(int nTab,
int nRow,
int nCol,
int nValuetype,
java.lang.String sValue,
TableStyle ts)
Sets the cell value in Table nTab to the given values.
|
void |
OdsFile.setCell(int nTab,
int nRow,
int nCol,
int nValue,
TableStyle ts)
Sets the cell value in Table nTab to the given value, the value type is TableCell.STYLE_FLOAT.
|
void |
OdsFile.setCell(int nTab,
int nRow,
int nCol,
java.lang.String sValue,
TableStyle ts)
Sets the cell value in Table nTab to the given value, the value type is TableCell.STYLE_STRING.
|
boolean |
Table.setCell(int nRow,
int nCol,
int valuetype,
java.lang.String value,
TableStyle ts)
Set the value of a cell.
|
void |
OdsFile.setCell(int nTab,
java.lang.String sPos,
java.util.Calendar cal,
TableStyle ts)
Sets the cell value in table nTab to the date from the Calendar object.
|
void |
OdsFile.setCell(int nTab,
java.lang.String sPos,
double dValue,
TableStyle ts)
Sets the cell value in table nTab to the given value, the value type is
TableCell.STYLE_FLOAT.
|
void |
OdsFile.setCell(int nTab,
java.lang.String sPos,
int nValuetype,
java.lang.String sValue,
TableStyle ts)
Sets the cell value in Table nTab to the given values.
|
void |
OdsFile.setCell(int nTab,
java.lang.String sPos,
int nValue,
TableStyle ts)
Sets the cell value in Table nTab to the given value, the value type is TableCell.STYLE_FLOAT.
|
void |
OdsFile.setCell(int nTab,
java.lang.String sPos,
java.lang.String sValue,
TableStyle ts)
Sets the cell value in Table nTab to the given value, the value type is TableCell.STYLE_STRING.
|
void |
OdsFile.setCell(java.lang.String sTab,
int nRow,
int nCol,
int nValuetype,
java.lang.String sValue,
TableStyle ts)
Deprecated.
As of release 0.2.1, use
OdsFile.getTableNumber(String) instead e.g.setCell("Tab2",1,1,"stringvalue") use setCell(getTableNumber("Tab2"),1,1,"stringvalue") |
void |
OdsFile.setCellInAllTables(int nRow,
int nCol,
java.util.Calendar cal,
TableStyle ts)
Sets the cell value in all tables to the date from the Calendar object.
|
void |
OdsFile.setCellInAllTables(int nRow,
int nCol,
int nValuetype,
java.lang.String sValue,
TableStyle ts)
Sets the cell value in all tables to the given values.
|
void |
OdsFile.setCellInAllTables(java.lang.String sPos,
java.util.Calendar cal,
TableStyle ts)
Sets the cell value in all tables to the date from the Calendar object.
|
void |
OdsFile.setCellInAllTables(java.lang.String sPos,
int nValuetype,
java.lang.String sValue,
TableStyle ts)
Sets the cell value in all tables to the given values.
|
boolean |
Content.setCellStyle(int nTab,
int nRow,
int nCol,
TableStyle ts) |
void |
OdsFile.setCellStyle(int nTab,
int nRow,
int nCol,
TableStyle ts)
Sets the style of this table cell.
|
boolean |
Table.setCellStyle(int nRow,
int nCol,
TableStyle ts)
Set the cell style for the specified cell.
|
void |
OdsFile.setCellStyle(int nTab,
java.lang.String sPos,
TableStyle ts)
Sets the style of this table cell.
|
void |
TableRow.setCellStyle(int nCol,
TableStyle ts)
Set the cell style for the cell at nCol to ts.
|
void |
OdsFile.setCellStyle(java.lang.String sTab,
int nRow,
int nCol,
TableStyle ts)
Deprecated.
As of release 0.2.1, use
OdsFile.getTableNumber(String) instead setCellStyle("Tab2",1,1,"stringvalue") use setCellStyle(getTableNumber("Tab2"),1,1,"stringvalue") |
boolean |
Content.setColumnStyle(int nTab,
int nCol,
TableStyle ts) |
void |
OdsFile.setColumnStyle(int nTab,
int nCol,
TableStyle ts)
Sets the style of this table column.
|
void |
Table.setColumnStyle(int nCol,
TableStyle ts)
Set the style of a column.
|
boolean |
TableStyle.setDefaultCellStyle(TableStyle ts)
Set the default cell style of a table column.
|