SpreadsheetSetActiveCell
Last updated
Was this helpful?
Sets the active/selected cell.
SpreadsheetSetActiveCell(spreadsheetObj=[any], row=[any], column=[any])spreadsheetObj
ANY
true
The spreadsheet object.
row
NUMERIC
true
The row number (1-based).
column
NUMERIC
true
The column number (1-based).
Set active cell:
// Set cursor to cell B3
var spreadsheet = SpreadsheetNew();
SpreadsheetSetActiveCell( spreadsheet, 3, 2 );SpreadsheetGetActiveCell() - Get active cell
SpreadsheetSetActiveSheet() - Set active sheet
Last updated
Was this helpful?
Was this helpful?
