onFormatChange

fires when cell format is changed

void onFormatChange(number row,number column,string format,string oldFormat){ ... };

Parameters

rownumberrow ID
columnnumbercolumn ID
formatstringnew format for the cell
oldFormatstringold format of the cell

Example

$$("ssheet1").attachEvent("onFormatChange",function(row,col,f,oF){
    // handler code here
});

See also
Back to top