SpreadsheetSetActiveCell

Sets the active/selected cell.

Method Signature

SpreadsheetSetActiveCell(spreadsheetObj=[any], row=[any], column=[any])

Arguments

Argument
Type
Required
Description
Default

spreadsheetObj

ANY

true

The spreadsheet object.

row

NUMERIC

true

The row number (1-based).

column

NUMERIC

true

The column number (1-based).

Examples

Set active cell:

// Set cursor to cell B3
var spreadsheet = SpreadsheetNew();
SpreadsheetSetActiveCell( spreadsheet, 3, 2 );

Last updated

Was this helpful?