Link Search Menu Expand Document

SSpread.SetActiveCell Method

Explanation Set the active cell.

Refer to the ActiveCol and ActiveRow properties to refer to the active cell.
Call format SetActiveCell(col, row)
Return value None
Arguments col Cell column number
row Cell row number
Exception EXT-28 An error occurred in the SetActiveCell method
Example of use
    Function OnRClicked(e) {
        SetActiveCell(e.Col, e.Row);
    }
    
Related item ActiveCol, ActiveRow properties