onAfterRangeSet

fires after a range of cells is set

void onAfterRangeSet(string name,string text);
namestringthe name of the cell range
textstringthe range of cells

Example

$$("sprsheet1").attachEvent("onAfterRangeSet", function(name,text){
    // handler code
});

Back to top