-
-
Notifications
You must be signed in to change notification settings - Fork 40
getCellAddress
Julian Halliwell edited this page Mar 6, 2024
·
1 revision
Returns the cell reference address as an alphanumeric string, e.g. A1 or DD203
getCellAddress( workbook, row, column );
-
workbookspreadsheet object -
rownumeric -
columnnumeric
Chainable? Yes but ends the chain.
- An error will be thrown if the cell doesn't exist
spreadsheet = New spreadsheet();
workbook = spreadsheet.new();
// create a cell A1
spreadsheet.setCellValue( workbook, "This is cell A1", 1, 1 );
cellAddress = spreadsheet.getCellAddress( workbook, 1, 1 ); //A1