Wiki source code of ExcelWritableSheet
Hide last authors
1.1 | 1 | The ExcelWritableSheet is a writable sheet returned by the getSheetByName and getSheetByPosition functions of ExcelWritableWorkbook | |
2 | |||
3 | == Functions == | ||
4 | === getNumberOfColumns() === | ||
5 | Get the number of columns | ||
6 | |||
7 | @return: | ||
8 | === getNumberOfRows() === | ||
9 | Get the number of columns | ||
10 | |||
11 | @return: | ||
12 | === setCellValue(column, row, value, format) === | ||
13 | Set the value of a cell | ||
14 | * column | ||
15 | * row | ||
16 | * value | ||
17 | * format | ||
18 | |||
19 | === getCellValue(column, row) === | ||
20 | Get the cell value | ||
21 | * column | ||
22 | * row | ||
23 | |||
24 | @return: | ||
25 | === getCellFormat(column, row) === | ||
26 | Get the cell format | ||
27 | * column | ||
28 | * row | ||
29 | |||
30 | @return: An ExcelCellFormat |