returns the range of selected cells
string | the selected range |
var range = $$("ssheet").getSelectedRange();
The returned range presents a string of cell references that refer to the first and the last cells of the range: "C4:D6".
Back to top