Link Search Menu Expand Document

SSpread.IsCellSelected Method

Explanation Returns if the specified cell is currently selected.
Call format IsCellSelected(col, row)
Return value $TRUE if selected, $FALSE otherwise
Arguments col Cell column number
rows Cell row number
Example of use
    Function OnRClicked(e) {
        if (IsCellSelected(e.Col, e.Row) == $TRUE) {
            MessageBox("Cell is selected");
        }
    }
    
Exception None