Asynchronously retrieves all the values in the sheet. The ValuesAvailable event is raised when the data is ready with a List that holds the data. Each item in the list is an array of strings that represents a single row.
GetCellValue (ColAsInt, RowAsInt) AsString
Returns the string value of the cell at the given column and row. (0, 0) is equivalent to A0. (0, 1) is equivalent to A1. (1, 0) is equivalent to B0.
This library wraps the open source jexcel project. It allows reading and writing Microsoft Excel files. See the tutorial in the forum for more information.
Creates a new WritableCell in the given coordinates and formula. Call WritableSheet.AddCell to add it to the sheet. cell.InitializeFormula(0, 1, "34 + 34")
sheet1.AddCell(cell)
Creates a new WritableCellFormat with the specified font style. Font - One of the FONT constants. FontSize - Default value is 10. Bold - Whether the text should be bold. Underline - Whether the text should be underlined. Italic - Whether the text style should be italic. FontColor - One of the COLOR constants.
Asynchronously retrieves all the values in the sheet. The ValuesAvailable event is raised when the data is ready with a List that holds the data. Each item in the list is an array of strings that represents a single row.
GetCellValue (ColAsInt, RowAsInt) AsString
Returns the string value of the cell at the given column and row. (0, 0) is equivalent to A0. (0, 1) is equivalent to A1. (1, 0) is equivalent to B0.