SpreadsheetGetActiveCell
Gets the currently active/selected cell.
Method Signature
SpreadsheetGetActiveCell(spreadsheetObj=[any])Arguments
Argument
Type
Required
Description
Default
spreadsheetObj
ANY
true
The spreadsheet object.
Examples
Get the active cell:
// Get currently active cell
var spreadsheet = SpreadsheetNew();
SpreadsheetSetActiveCell( spreadsheet, 2, 3 );
var activeCell = SpreadsheetGetActiveCell( spreadsheet );
println( activeCell );Related
SpreadsheetSetActiveCell() - Set active cell
SpreadsheetSetActiveSheet() - Set active sheet
Last updated
Was this helpful?
